1 | Object get(Object array, int index) | This method returns the value of the indexed component in the specified array object. |
2 | boolean getBoolean(Object array, int index) | This method returns the value of the indexed component in the specified array object as a boolean. |
3 | byte getByte(Object array, int index) | This method returns the value of the indexed component in the specified array object as a byte. |
4 | char getChar(Object array, int index) | This method returns the value of the indexed component in the specified array object as a char. |
5 | double getDouble(Object array, int index) | This method returns the value of the indexed component in the specified array object as a double. |
6 | float getFloat(Object array, int index) | This method returns the value of the indexed component in the specified array object as a float. |
7 | int getInt(Object array, int index) | This method returns the value of the indexed component in the specified array object as an int. |
8 | int getLength(Object array) | This method returns the length of the specified array object as an int. |
9 | long getLong(Object array, int index) | This method returns the value of the indexed component in the specified array object as a long. |
10 | short getShort(Object array, int index) | This method returns the value of the indexed component in the specified array object as a short. |
11 | Object newInstance(Class<E> componentType, int length) | This method creates a new array with the specified component type and length. |
12 | Object newInstance(Class<E> componentType, int... dimensions) | This method creates a new array with the specified component type and dimensions. |
13 | void set(Object array, int index, Object value) | This method sets the value of the indexed component of the specified array object to the specified new value. |
14 | void setBoolean(Object array, int index, boolean z) | This method sets the value of the indexed component of the specified array object to the specified boolean value. |
15 | void setByte(Object array, int index, byte b) | This method sets the value of the indexed component of the specified array object to the specified byte value. |
16 | void setChar(Object array, int index, char c) | This method sets the value of the indexed component of the specified array object to the specified char value. |
17 | void setDouble(Object array, int index, double d) | This method sets the value of the indexed component of the specified array object to the specified double value. |
18 | void setFloat(Object array, int index, float f) | This method sets the value of the indexed component of the specified array object to the specified float value. |
19 | void setInt(Object array, int index, int i) | This method sets the value of the indexed component of the specified array object to the specified int value. |
20 | void setLong(Object array, int index, long l) | This method sets the value of the indexed component of the specified array object to the specified long value. |
21 | void setShort(Object array, int index, short s) | This method sets the value of the indexed component of the specified array object to the specified short value. |