Parallel Colt 0.9.4

Uses of Class
cern.colt.map.AbstractMap

Packages that use AbstractMap
cern.colt.map.tdouble Automatically growing and shrinking map holding elements of double data type. 
cern.colt.map.tfloat Automatically growing and shrinking map holding elements of float data type. 
cern.colt.map.tint Automatically growing and shrinking map holding elements of int data type. 
cern.colt.map.tlong Automatically growing and shrinking map holding elements of long data type. 
cern.colt.map.tobject Automatically growing and shrinking map holding elements of Object data type. 
 

Uses of AbstractMap in cern.colt.map.tdouble
 

Subclasses of AbstractMap in cern.colt.map.tdouble
 class AbstractDoubleIntMap
          Abstract base class for hash maps holding (key,value) associations of type (double-->int).
 class AbstractDoubleLongMap
          Abstract base class for hash maps holding (key,value) associations of type (double-->long).
 class AbstractIntDoubleMap
          Abstract base class for hash maps holding (key,value) associations of type (int-->double).
 class AbstractLongDoubleMap
          Abstract base class for hash maps holding (key,value) associations of type (int-->double).
 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 OpenDoubleLongHashMap
          Hash map holding (key,value) associations of type (double-->long); 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 OpenLongDoubleHashMap
          Hash map holding (key,value) associations of type (int-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
 

Uses of AbstractMap in cern.colt.map.tfloat
 

Subclasses of AbstractMap in cern.colt.map.tfloat
 class AbstractFloatIntMap
          Abstract base class for hash maps holding (key,value) associations of type (float-->int).
 class AbstractFloatLongMap
          Abstract base class for hash maps holding (key,value) associations of type (float-->long).
 class AbstractIntFloatMap
          Abstract base class for hash maps holding (key,value) associations of type (int-->float).
 class AbstractLongFloatMap
          Abstract base class for hash maps holding (key,value) associations of type (int-->float).
 class OpenFloatIntHashMap
          Hash map holding (key,value) associations of type (float-->int); Automatically grows and shrinks as needed; Implemented using open addressing with float hashing.
 class OpenFloatLongHashMap
          Hash map holding (key,value) associations of type (float-->long); Automatically grows and shrinks as needed; Implemented using open addressing with float hashing.
 class OpenIntFloatHashMap
          Hash map holding (key,value) associations of type (int-->float); Automatically grows and shrinks as needed; Implemented using open addressing with float hashing.
 class OpenLongFloatHashMap
          Hash map holding (key,value) associations of type (int-->float); Automatically grows and shrinks as needed; Implemented using open addressing with float hashing.
 

Uses of AbstractMap in cern.colt.map.tint
 

Subclasses of AbstractMap in cern.colt.map.tint
 class AbstractIntIntMap
          Abstract base class for hash maps holding (key,value) associations of type (int-->int).
 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 QuickOpenIntIntHashMap
          Status: Experimental; Do not use for production yet.
 

Uses of AbstractMap in cern.colt.map.tlong
 

Subclasses of AbstractMap in cern.colt.map.tlong
 class AbstractIntLongMap
          Abstract base class for hash maps holding (key,value) associations of type (int-->long).
 class AbstractLongIntMap
          Abstract base class for hash maps holding (key,value) associations of type (long-->int).
 class AbstractLongLongMap
          Abstract base class for hash maps holding (key,value) associations of type (long-->long).
 class OpenIntLongHashMap
          Hash map holding (key,value) associations of type (int-->long); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
 class OpenLongIntHashMap
          Hash map holding (key,value) associations of type (long-->int); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
 class OpenLongLongHashMap
          Hash map holding (key,value) associations of type (long-->long); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.
 

Uses of AbstractMap in cern.colt.map.tobject
 

Subclasses of AbstractMap in cern.colt.map.tobject
 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 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.
 


Parallel Colt 0.9.4

Jump to the Parallel Colt Homepage