Uses of Class
org.eclipse.persistence.internal.identitymaps.WeakIdentityMap
-
Packages that use WeakIdentityMap Package Description org.eclipse.persistence.descriptors org.eclipse.persistence.internal.helper org.eclipse.persistence.internal.identitymaps -
-
Uses of WeakIdentityMap in org.eclipse.persistence.descriptors
Fields in org.eclipse.persistence.descriptors with type parameters of type WeakIdentityMap Modifier and Type Field Description protected Class<? extends WeakIdentityMap>CacheIndex. cacheTypeAllows the identity map class type to be set.Methods in org.eclipse.persistence.descriptors with type parameters of type WeakIdentityMap Modifier and Type Method Description <T extends WeakIdentityMap>
Class<T>CacheIndex. getCacheType()ADVANCED: Return the type of the cache used for the index.Method parameters in org.eclipse.persistence.descriptors with type arguments of type WeakIdentityMap Modifier and Type Method Description voidCacheIndex. setCacheType(Class<? extends WeakIdentityMap> cacheType)ADVANCED: Set the type of the cache used for the index. -
Uses of WeakIdentityMap in org.eclipse.persistence.internal.helper
Fields in org.eclipse.persistence.internal.helper with type parameters of type WeakIdentityMap Modifier and Type Field Description static Class<WeakIdentityMap>ClassConstants. WeakIdentityMap_Class -
Uses of WeakIdentityMap in org.eclipse.persistence.internal.identitymaps
Subclasses of WeakIdentityMap in org.eclipse.persistence.internal.identitymaps Modifier and Type Class Description classHardCacheWeakIdentityMapPurpose: A HardCacheWeakIdentityMap is identical to the weak identity map, however the weak reference can be a performance problem for some types of apps because it can cause too much garbage collection of objects read causing them to be re-read and re-built (this defeats the purpose of the cache).classSoftCacheWeakIdentityMapPurpose: A SoftCacheWeakIdentityMap is identical to the WeakIdentityMap, however the weak reference can be a performance problem for some types of apps because it can cause too much garbage collection of objects read causing them to be re-read and re-built (this defeats the purpose of the cache).classSoftIdentityMapPurpose: A SoftIdentityMap holds all objects referenced by the application.
-