Package | Description |
---|---|
icy.type.collection.array |
Contains array type definition and tools (generic arrays, dynamic arrays...)
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayDataType
Deprecated.
Use
ArrayType instead |
Modifier and Type | Method and Description |
---|---|
static ArrayType |
ArrayType.getArrayInfo(java.lang.Object array)
Return the ArrayDataType for the specified array (passed as Object)
|
static ArrayType |
ArrayUtil.getArrayType(java.lang.Object array)
Returns the
ArrayType of the specified array. |
Modifier and Type | Method and Description |
---|---|
static java.lang.Object |
ArrayUtil.allocIfNull(java.lang.Object array,
ArrayType arrayType,
int len)
Allocate the specified array if it's defined to null with the specified len
|
static java.lang.Object |
ArrayUtil.createArray(ArrayType arrayType,
int len)
Allocate the specified array data type with specified len for the first dimension
|
boolean |
ArrayType.isSame(ArrayType arrayType)
Return true if specified array data type is equals to current array data type
|