Modifier | Constructor and Description |
---|---|
private |
Array()
Constructor prohibited.
|
Modifier and Type | Method and Description |
---|---|
static Object |
get(Object array,
int index) |
static int |
getLength(Object array) |
static void |
set(Object array,
int index,
Object value) |
public static int getLength(Object array)
array
- is the supposed array.array
.Array.getLength(Object)
public static Object get(Object array, int index)
array
- is the supposed array.index
- is the index in array
to get the value for.index
in the given array
.Array.get(Object, int)
public static void set(Object array, int index, Object value)
array
- is the supposed array.index
- is the index in array
to get the value for.value
- is the value to set at index
in the given array
.Array.set(Object, int, Object)
Copyright © 2001–2016 mmm-Team. All rights reserved.