Uses of Class
org.apache.commons.collections.map.AbstractHashedMap

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
          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 CaseInsensitiveMap
          A case-insensitive Map.
 class HashedMap
          A Map implementation that is a general purpose alternative to HashMap.
 class IdentityMap
          A Map implementation that matches keys and values based on == not equals().
 class LinkedMap
          A Map implementation that maintains the order of the entries.
 class LRUMap
          A Map implementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.
 

Fields in org.apache.commons.collections.map declared as AbstractHashedMap
protected  AbstractHashedMap AbstractHashedMap.HashIterator.parent
          The parent map
protected  AbstractHashedMap AbstractHashedMap.EntrySet.parent
          The parent map
protected  AbstractHashedMap AbstractHashedMap.KeySet.parent
          The parent map
protected  AbstractHashedMap AbstractHashedMap.Values.parent
          The parent map
 

Constructors in org.apache.commons.collections.map with parameters of type AbstractHashedMap
AbstractHashedMap.HashIterator(AbstractHashedMap parent)
           
AbstractHashedMap.HashMapIterator(AbstractHashedMap parent)
           
AbstractHashedMap.EntrySet(AbstractHashedMap parent)
           
AbstractHashedMap.EntrySetIterator(AbstractHashedMap parent)
           
AbstractHashedMap.KeySet(AbstractHashedMap parent)
           
AbstractHashedMap.KeySetIterator(AbstractHashedMap parent)
           
AbstractHashedMap.Values(AbstractHashedMap parent)
           
AbstractHashedMap.ValuesIterator(AbstractHashedMap parent)
           
 



Copyright © 2001-2004 Apache Software Foundation. All Rights Reserved.