static Object |
Array.get(Object array,
int index) |
Return the element of the array at the specified index.
|
static boolean |
Array.getBoolean(Object array,
int index) |
Return the element of the array at the specified index,
converted to a boolean if possible.
|
static byte |
Array.getByte(Object array,
int index) |
Return the element of the array at the specified index,
converted to a byte if possible.
|
static char |
Array.getChar(Object array,
int index) |
Return the element of the array at the specified index,
converted to a char if possible.
|
static double |
Array.getDouble(Object array,
int index) |
Return the element of the array at the specified index,
converted to a double if possible.
|
static float |
Array.getFloat(Object array,
int index) |
Return the element of the array at the specified index,
converted to a float if possible.
|
static int |
Array.getInt(Object array,
int index) |
Return the element of the array at the specified index,
converted to an int if possible.
|
static long |
Array.getLong(Object array,
int index) |
Return the element of the array at the specified index,
converted to a long if possible.
|
static short |
Array.getShort(Object array,
int index) |
Return the element of the array at the specified index,
converted to a short if possible.
|
static void |
Array.set(Object array,
int index,
Object value) |
Set the element of the array at the specified index to the value.
|
static void |
Array.setBoolean(Object array,
int index,
boolean value) |
Set the element of the array at the specified index to the boolean
value.
|
static void |
Array.setByte(Object array,
int index,
byte value) |
Set the element of the array at the specified index to the byte
value.
|
static void |
Array.setChar(Object array,
int index,
char value) |
Set the element of the array at the specified index to the char
value.
|
static void |
Array.setDouble(Object array,
int index,
double value) |
Set the element of the array at the specified index to the double
value.
|
static void |
Array.setFloat(Object array,
int index,
float value) |
Set the element of the array at the specified index to the float
value.
|
static void |
Array.setInt(Object array,
int index,
int value) |
Set the element of the array at the specified index to the int
value.
|
static void |
Array.setLong(Object array,
int index,
long value) |
Set the element of the array at the specified index to the long
value.
|
static void |
Array.setShort(Object array,
int index,
short value) |
Set the element of the array at the specified index to the short
value.
|