T - generics for primitive array (ie. double[], float[], int[] ...)public interface MultiArray<T>
| Modifier and Type | Method and Description |
|---|---|
Object |
get(int index)
Returns the element at a given indices.
|
Object |
get(int[] indices)
Returns the element at given indices.
|
boolean |
getBoolean(int[] indices)
Returns the element at given indices.
|
byte |
getByte(int[] indices)
Returns the element at given indices.
|
int[] |
getDimensions()
Returns the dimensions of the array.
|
double |
getDouble(int[] indices)
Returns the element at given indices.
|
T |
getElements()
Returns the array of all elements of multi-dimensional array.
|
int |
getElementsCount()
Returns the number of elements in the multi-dimensional array.
|
float |
getFloat(int[] indices)
Returns the element at given indices.
|
int |
getIndex(int[] indices)
Returns the element at given indices.
|
int |
getInt(int[] indices)
Returns the element at given indices.
|
long |
getLong(int[] indices)
Returns the element at given indices.
|
short |
getShort(int[] indices)
Returns the element at given indices.
|
String |
getString(int[] indices)
Returns the element at given indices.
|
Object get(int index)
index - the indicesObject get(int[] indices)
indices - position of the element in the multi-dimensional arrayboolean getBoolean(int[] indices)
indices - position of the element in the multi-dimensional arraybyte getByte(int[] indices)
indices - position of the element in the multi-dimensional arrayint[] getDimensions()
double getDouble(int[] indices)
indices - position of the element in the multi-dimensional arrayT getElements()
int getElementsCount()
float getFloat(int[] indices)
indices - position of the element in the multi-dimensional arrayint getIndex(int[] indices)
indices - position of the element in the multi-dimensional arrayint getInt(int[] indices)
indices - position of the element in the multi-dimensional arraylong getLong(int[] indices)
indices - position of the element in the multi-dimensional arrayshort getShort(int[] indices)
indices - position of the element in the multi-dimensional arrayString getString(int[] indices)
indices - position of the element in the multi-dimensional arrayCopyright © 2019 GSI Helmholtzzentrum für Schwerionenforschung GmbH. All rights reserved.