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 TypeClassDescriptionclassHash 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 AbstractIntObjectMapSelectedSparseObjectMatrix1D.elementsprotected AbstractIntObjectMapSelectedSparseObjectMatrix2D.elementsprotected AbstractIntObjectMapSelectedSparseObjectMatrix3D.elementsThe elements of this matrix.protected AbstractIntObjectMapSparseObjectMatrix1D.elementsprotected AbstractIntObjectMapSparseObjectMatrix2D.elementsprotected AbstractIntObjectMapSparseObjectMatrix3D.elementsConstructors in cern.colt.matrix.impl with parameters of type AbstractIntObjectMapModifierConstructorDescriptionprotectedSelectedSparseObjectMatrix1D(int size, AbstractIntObjectMap elements, int zero, int stride, int[] offsets, int offset) Constructs a matrix view with the given parameters.protectedSelectedSparseObjectMatrix1D(AbstractIntObjectMap elements, int[] offsets) Constructs a matrix view with the given parameters.protectedSelectedSparseObjectMatrix2D(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.protectedSelectedSparseObjectMatrix2D(AbstractIntObjectMap elements, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protectedSelectedSparseObjectMatrix3D(AbstractIntObjectMap elements, int[] sliceOffsets, int[] rowOffsets, int[] columnOffsets, int offset) Constructs a matrix view with the given parameters.protectedSparseObjectMatrix1D(int size, AbstractIntObjectMap elements, int offset, int stride) Constructs a matrix view with a given number of parameters.protectedSparseObjectMatrix2D(int rows, int columns, AbstractIntObjectMap elements, int rowZero, int columnZero, int rowStride, int columnStride) Constructs a view with the given parameters.protectedSparseObjectMatrix3D(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.