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 classAbstractLinkedMapAn abstract implementation of a hash-based map that links entries to create an ordered map and which provides numerous points for subclasses to override.classAbstractReferenceMapAn abstract implementation of a hash-based map that allows the entries to be removed by the garbage collector.classCaseInsensitiveMapA case-insensitiveMap.classHashedMapAMapimplementation that is a general purpose alternative toHashMap.classIdentityMapAMapimplementation that matches keys and values based on==notequals().classLinkedMapAMapimplementation that maintains the order of the entries.classLRUMapAMapimplementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.classReferenceIdentityMapAMapimplementation that allows mappings to be removed by the garbage collector and matches keys and values based on==notequals().classReferenceMapAMapimplementation 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 AbstractHashedMapMultiKeyMap. mapThe decorated mapprotected AbstractHashedMapAbstractHashedMap.EntrySet. parentThe parent mapprotected AbstractHashedMapAbstractHashedMap.HashIterator. parentThe parent mapprotected AbstractHashedMapAbstractHashedMap.KeySet. parentThe parent mapprotected AbstractHashedMapAbstractHashedMap.Values. parentThe parent mapMethods in org.apache.commons.collections.map that return AbstractHashedMap Modifier and Type Method Description protected AbstractHashedMapFlat3Map. 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 MultiKeyMapMultiKeyMap. 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)
-