Uses of Class
org.apache.commons.collections.map.AbstractHashedMap
-
Packages that use AbstractHashedMap Package Description org.apache.commons.collections.map -
-
Uses of AbstractHashedMap in org.apache.commons.collections.map
Subclasses of AbstractHashedMap in org.apache.commons.collections.map Modifier and Type Class Description class
AbstractLinkedMap
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
An abstract implementation of a hash-based map that allows the entries to be removed by the garbage collector.class
CaseInsensitiveMap
A case-insensitiveMap
.class
HashedMap
AMap
implementation that is a general purpose alternative toHashMap
.class
IdentityMap
AMap
implementation that matches keys and values based on==
notequals()
.class
LinkedMap
AMap
implementation that maintains the order of the entries.class
LRUMap
AMap
implementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.class
ReferenceIdentityMap
AMap
implementation that allows mappings to be removed by the garbage collector and matches keys and values based on==
notequals()
.class
ReferenceMap
AMap
implementation that allows mappings to be removed by the garbage collector.Fields in org.apache.commons.collections.map declared as AbstractHashedMap Modifier and Type Field Description protected AbstractHashedMap
MultiKeyMap. map
The decorated mapprotected AbstractHashedMap
AbstractHashedMap.EntrySet. parent
The parent mapprotected AbstractHashedMap
AbstractHashedMap.HashIterator. parent
The parent mapprotected AbstractHashedMap
AbstractHashedMap.KeySet. parent
The parent mapprotected AbstractHashedMap
AbstractHashedMap.Values. parent
The parent mapMethods in org.apache.commons.collections.map that return AbstractHashedMap Modifier and Type Method Description protected AbstractHashedMap
Flat3Map. createDelegateMap()
Create an instance of the map used for storage when in delegation mode.Methods in org.apache.commons.collections.map with parameters of type AbstractHashedMap Modifier and Type Method Description static MultiKeyMap
MultiKeyMap. decorate(AbstractHashedMap map)
Decorates the specified map to add the MultiKeyMap API and fast query.Constructors in org.apache.commons.collections.map with parameters of type AbstractHashedMap Constructor Description EntrySet(AbstractHashedMap parent)
EntrySetIterator(AbstractHashedMap parent)
HashIterator(AbstractHashedMap parent)
HashMapIterator(AbstractHashedMap parent)
KeySet(AbstractHashedMap parent)
KeySetIterator(AbstractHashedMap parent)
MultiKeyMap(AbstractHashedMap map)
Constructor that decorates the specified map and is called fromMultiKeyMap.decorate(AbstractHashedMap)
.Values(AbstractHashedMap parent)
ValuesIterator(AbstractHashedMap parent)
-