public final class Array3<T>
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
int |
dim0 |
int |
dim1 |
int |
dim2 |
java.lang.Object[][] |
elmts |
| Constructor and Description |
|---|
Array3(TypeDescriptor<T> elmtType,
int dim0,
int dim1,
int dim2,
java.lang.Object[][] elmts) |
| Modifier and Type | Method and Description |
|---|---|
static <T> TypeDescriptor<Array3<T>> |
_typeDescriptor() |
void |
fill(T z) |
Array3 |
fillThenReturn(T z) |
T |
get(int i0,
int i1,
int i2) |
void |
set(int i0,
int i1,
int i2,
T value) |
public final java.lang.Object[][] elmts
public final int dim0
public final int dim1
public final int dim2
public Array3(TypeDescriptor<T> elmtType, int dim0, int dim1, int dim2, java.lang.Object[][] elmts)