Package org.apache.openjpa.util

Examples of org.apache.openjpa.util.CacheMap.values()


        // unlikely that this method will be called in a performance intensive
        // environment. In any event applications can revert to the old behavior
        // by simply calling removeAll().
        CacheMap orig = _cache;
        _cache = newCacheMap();
        for (Object o : orig.values()) {
            Class<?> curClass = ((DataCachePCData) o).getType();
            if (subs) {
                if (cls == curClass || (cls != null && cls.isAssignableFrom(curClass))) {
                    orig.remove(((DataCachePCData) o).getId());
                }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.