Uses of Class
cern.colt.map.AbstractMap
Packages that use AbstractMap
Package
Description
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.mapModifier and TypeClassDescriptionclass
Abstract base class for hash maps holding (key,value) associations of type (double-->int).class
Abstract base class for hash maps holding (key,value) associations of type (int-->double).class
Abstract base class for hash maps holding (key,value) associations of type (int-->int).class
Abstract base class for hash maps holding (key,value) associations of type (int-->Object).class
Abstract base class for hash maps holding (key,value) associations of type (long-->Object).class
Hash map holding (key,value) associations of type (double-->int); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.class
Hash map holding (key,value) associations of type (int-->double); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.class
Hash map holding (key,value) associations of type (int-->int); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.class
Hash map holding (key,value) associations of type (int-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.class
Hash map holding (key,value) associations of type (long-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.(package private) class
Status: Experimental; Do not use for production yet.