Colt 1.2.0

Uses of Class
cern.colt.map.AbstractMap

Packages that use AbstractMap
cern.colt.map Automatically growing and shrinking maps holding objects or primitive data types such as int, double, etc. 
 

Uses of AbstractMap in cern.colt.map
 

Subclasses of AbstractMap in cern.colt.map
 class AbstractDoubleIntMap
          Abstract base class for hash maps holding (key,value) associations of type (double-->int).
 class AbstractIntDoubleMap
          Abstract base class for hash maps holding (key,value) associations of type (int-->double).
 class AbstractIntIntMap
          Abstract base class for hash maps holding (key,value) associations of type (int-->int).
 class AbstractIntObjectMap
          Abstract base class for hash maps holding (key,value) associations of type (int-->Object).
 class AbstractLongObjectMap
          Abstract base class for hash maps holding (key,value) associations of type (long-->Object).
 class OpenDoubleIntHashMap
          Hash map holding (key,value) associations of type (double-->int); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
 class OpenIntDoubleHashMap
          Hash map holding (key,value) associations of type (int-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
 class OpenIntIntHashMap
          Hash map holding (key,value) associations of type (int-->int); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
 class OpenIntObjectHashMap
          Hash map holding (key,value) associations of type (int-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
 class OpenLongObjectHashMap
          Hash map holding (key,value) associations of type (long-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
 


Colt 1.2.0

Jump to the Colt Homepage