public abstract class AbstractMatrix extends PersistentObject
int, float, etc.
First see the package summary and javadoc tree view to get the broad picture.
Note that this implementation is not synchronized.
serialVersionUID| Modifier and Type | Method and Description |
|---|---|
void |
ensureCapacity(int minNonZeros)
Ensures that the receiver can hold at least the specified number of non-zero (non-null) cells without needing to allocate new internal memory.
|
abstract int |
size()
Returns the number of cells.
|
void |
trimToSize()
Releases any superfluous internal memory.
|
clonepublic void ensureCapacity(int minNonZeros)
This default implementation does nothing. Override this method if necessary.
minNonZeros - the desired minimum number of non-zero (non-null) cells.public abstract int size()
public void trimToSize()
This default implementation does nothing. Override this method if necessary.
Jump to the Colt Homepage