Class java.lang.reflect.Array (1.1)


public final class Array extends Object {
  // No Constructor
  // Class Methods
    public static Object get(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static boolean getBoolean(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static byte getByte(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static char getChar(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static double getDouble(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static float getFloat(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static int getInt(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static int getLength(Object array) throws IllegalArgumentException;
    public static long getLong(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static short getShort(Object array, int index) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static Object newInstance(Class componentType, int length) throws NegativeArraySizeException, NullPointerException;
    public static Object newInstance(Class componentType, int[ ] dimensions) throws IllegalArgumentException, NegativeArraySizeException, NullPointerException;
    public static void set(Object array, int index, Object value) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static void setBoolean(Object array, int index, boolean z) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static void setByte(Object array, int index, byte b) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static void setChar(Object array, int index, char c) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static void setDouble(Object array, int index, double d) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static void setFloat(Object array, int index, float f) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static void setInt(Object array, int index, int i) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static void setLong(Object array, int index, long l) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
    public static void setShort(Object array, int index, short s) throws IllegalArgumentException, ArrayIndexOutOfBoundsException, NullPointerException;
}