|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use AbstractHashedMap | |
---|---|
org.apache.commons.collections.map |
This package contains implementations of the
Map ,
IterableMap ,
OrderedMap and
SortedMap interfaces. |
Uses of AbstractHashedMap in org.apache.commons.collections.map |
---|
Subclasses of AbstractHashedMap in org.apache.commons.collections.map | |
---|---|
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 |
CaseInsensitiveMap<V>
A case-insensitive Map . |
class |
HashedMap<K,V>
A Map implementation that is a general purpose alternative
to HashMap . |
class |
IdentityMap<K,V>
A Map implementation that matches keys and values based
on == not equals() . |
class |
LinkedMap<K,V>
A Map implementation that maintains the order of the entries. |
class |
LRUMap<K,V>
A Map implementation with a fixed maximum size which removes
the least recently used entry if an entry is added when full. |
class |
ReferenceIdentityMap<K,V>
A Map implementation that allows mappings to be
removed by the garbage collector and matches keys and values based
on == not equals() . |
class |
ReferenceMap<K,V>
A Map implementation that allows mappings to be
removed by the garbage collector. |
Fields in org.apache.commons.collections.map declared as AbstractHashedMap | |
---|---|
protected AbstractHashedMap<MultiKey<K>,V> |
MultiKeyMap.map
The decorated map |
protected AbstractHashedMap<K,V> |
AbstractHashedMap.EntrySet.parent
The parent map |
protected AbstractHashedMap<K,V> |
AbstractHashedMap.KeySet.parent
The parent map |
protected AbstractHashedMap<K,V> |
AbstractHashedMap.Values.parent
The parent map |
protected AbstractHashedMap |
AbstractHashedMap.HashIterator.parent
The parent map |
Methods in org.apache.commons.collections.map that return AbstractHashedMap | |
---|---|
protected AbstractHashedMap<K,V> |
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 | ||
---|---|---|
static
|
MultiKeyMap.decorate(AbstractHashedMap<MultiKey<K>,V> 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 | |
---|---|
AbstractHashedMap.EntrySet(AbstractHashedMap<K,V> parent)
|
|
AbstractHashedMap.EntrySetIterator(AbstractHashedMap<K,V> parent)
|
|
AbstractHashedMap.HashIterator(AbstractHashedMap<K,V> parent)
|
|
AbstractHashedMap.HashMapIterator(AbstractHashedMap<K,V> parent)
|
|
AbstractHashedMap.KeySet(AbstractHashedMap<K,V> parent)
|
|
AbstractHashedMap.KeySetIterator(AbstractHashedMap<K,V> parent)
|
|
AbstractHashedMap.Values(AbstractHashedMap<K,V> parent)
|
|
AbstractHashedMap.ValuesIterator(AbstractHashedMap<K,V> parent)
|
|
MultiKeyMap(AbstractHashedMap<MultiKey<K>,V> map)
Constructor that decorates the specified map and is called from MultiKeyMap.decorate(AbstractHashedMap) . |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |