Uses of Class
cern.colt.map.AbstractIntObjectMap
Packages that use AbstractIntObjectMap
Package
Description
Automatically growing and shrinking maps holding objects or primitive
data types such as int, double, etc.
Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces of
cern.colt.matrix
, without subsetting or supersetting.-
Uses of AbstractIntObjectMap in cern.colt.map
Subclasses of AbstractIntObjectMap in cern.colt.mapModifier and TypeClassDescriptionclass
Hash map holding (key,value) associations of type (int-->Object); Automatically grows and shrinks as needed; Implemented using open addressing with double hashing.Methods in cern.colt.map that return AbstractIntObjectMapModifier and TypeMethodDescriptionAbstractIntObjectMap.copy()
Returns a deep copy of the receiver; usesclone()
and casts the result. -
Uses of AbstractIntObjectMap in cern.colt.matrix.impl
Fields in cern.colt.matrix.impl declared as AbstractIntObjectMapModifier and TypeFieldDescriptionprotected AbstractIntObjectMap
SelectedSparseObjectMatrix1D.elements
protected AbstractIntObjectMap
SelectedSparseObjectMatrix2D.elements
protected AbstractIntObjectMap
SelectedSparseObjectMatrix3D.elements
The elements of this matrix.protected AbstractIntObjectMap
SparseObjectMatrix1D.elements
protected AbstractIntObjectMap
SparseObjectMatrix2D.elements
protected AbstractIntObjectMap
SparseObjectMatrix3D.elements
Constructors in cern.colt.matrix.impl with parameters of type AbstractIntObjectMapModifierConstructorDescriptionprotected
SelectedSparseObjectMatrix1D
(int size, AbstractIntObjectMap elements, int zero, int stride, int[] offsets, int offset) Constructs a matrix view with the given parameters.protected
SelectedSparseObjectMatrix1D
(AbstractIntObjectMap elements, int[] offsets) Constructs a matrix view with the given parameters.protected
SelectedSparseObjectMatrix2D
(int rows, int columns, AbstractIntObjectMap elements, int rowZero, int columnZero, int rowStride, int columnStride, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protected
SelectedSparseObjectMatrix2D
(AbstractIntObjectMap elements, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protected
SelectedSparseObjectMatrix3D
(AbstractIntObjectMap elements, int[] sliceOffsets, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protected
SparseObjectMatrix1D
(int size, AbstractIntObjectMap elements, int offset, int stride) Constructs a matrix view with a given number of parameters.protected
SparseObjectMatrix2D
(int rows, int columns, AbstractIntObjectMap elements, int rowZero, int columnZero, int rowStride, int columnStride) Constructs a view with the given parameters.protected
SparseObjectMatrix3D
(int slices, int rows, int columns, AbstractIntObjectMap elements, int sliceZero, int rowZero, int columnZero, int sliceStride, int rowStride, int columnStride) Constructs a view with the given parameters.