Uses of Class
cern.colt.map.AbstractIntObjectMap
-
Packages that use AbstractIntObjectMap Package Description cern.colt.map Automatically growing and shrinking maps holding objects or primitive data types such as int, double, etc.cern.colt.matrix.impl Matrix implementations; You normally need not look at this package, because all concrete classes implement the abstract interfaces ofcern.colt.matrix
, without subsetting or supersetting. -
-
Uses of AbstractIntObjectMap in cern.colt.map
Subclasses of AbstractIntObjectMap in cern.colt.map Modifier and Type Class Description 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.Methods in cern.colt.map that return AbstractIntObjectMap Modifier and Type Method Description AbstractIntObjectMap
AbstractIntObjectMap. 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 AbstractIntObjectMap Modifier and Type Field Description protected 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 AbstractIntObjectMap Constructor Description SelectedSparseObjectMatrix1D(int size, AbstractIntObjectMap elements, int zero, int stride, int[] offsets, int offset)
Constructs a matrix view with the given parameters.SelectedSparseObjectMatrix1D(AbstractIntObjectMap elements, int[] offsets)
Constructs a matrix view with the given parameters.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.SelectedSparseObjectMatrix2D(AbstractIntObjectMap elements, int[] rowOffsets, int[] columnOffsets, int offset)
Constructs a matrix view with the given parameters.SelectedSparseObjectMatrix3D(AbstractIntObjectMap elements, int[] sliceOffsets, int[] rowOffsets, int[] columnOffsets, int offset)
Constructs a matrix view with the given parameters.SparseObjectMatrix1D(int size, AbstractIntObjectMap elements, int offset, int stride)
Constructs a matrix view with a given number of parameters.SparseObjectMatrix2D(int rows, int columns, AbstractIntObjectMap elements, int rowZero, int columnZero, int rowStride, int columnStride)
Constructs a view with the given parameters.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.
-