Uses of Class
org.apache.openjpa.lib.util.collections.AbstractHashedMap
-
Packages that use AbstractHashedMap Package Description org.apache.openjpa.lib.util General Utilitiesorg.apache.openjpa.lib.util.collections commons-collections4 import. -
-
Uses of AbstractHashedMap in org.apache.openjpa.lib.util
Subclasses of AbstractHashedMap in org.apache.openjpa.lib.util Modifier and Type Class Description class
LRUMap
Extension of the commonsLRUMap
that can change its maximum size.class
ReferenceHashMap
Map in which the key, value, or both may be weak/soft references. -
Uses of AbstractHashedMap in org.apache.openjpa.lib.util.collections
Subclasses of AbstractHashedMap in org.apache.openjpa.lib.util.collections Modifier and Type Class Description class
AbstractLinkedMap<K,V>
An abstract implementation of a hash-based map that links entries to create an ordered map and which provides numerous points for subclasses to override.class
AbstractReferenceMap<K,V>
An abstract implementation of a hash-based map that allows the entries to be removed by the garbage collector.class
LinkedMap<K,V>
AMap
implementation that maintains the order of the entries.class
LRUMap<K,V>
AMap
implementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.class
ReferenceIdentityMap<K,V>
AMap
implementation that allows mappings to be removed by the garbage collector and matches keys and values based on==
notequals()
.class
ReferenceMap<K,V>
AMap
implementation that allows mappings to be removed by the garbage collector.Methods in org.apache.openjpa.lib.util.collections that return AbstractHashedMap Modifier and Type Method Description protected AbstractHashedMap<K,V>
AbstractHashedMap. clone()
Clones the map without cloning the keys or values.Constructors in org.apache.openjpa.lib.util.collections with parameters of type AbstractHashedMap Constructor Description EntrySet(AbstractHashedMap<K,V> parent)
EntrySetIterator(AbstractHashedMap<K,V> parent)
HashIterator(AbstractHashedMap<K,V> parent)
HashMapIterator(AbstractHashedMap<K,V> parent)
KeySet(AbstractHashedMap<K,?> parent)
KeySetIterator(AbstractHashedMap<K,?> parent)
Values(AbstractHashedMap<?,V> parent)
ValuesIterator(AbstractHashedMap<?,V> parent)
-