• Method Summary

    get(Object array, int index)

    Returns the value of the indexed component in the specified array object.

    static boolean

    Returns the value of the indexed component in the specified array object, as a boolean.

    static byte

    Returns the value of the indexed component in the specified array object, as a byte.

    static char

    Returns the value of the indexed component in the specified array object, as a char.

    static double

    Returns the value of the indexed component in the specified array object, as a double.

    static float

    Returns the value of the indexed component in the specified array object, as a float.

    static int

    Returns the value of the indexed component in the specified array object, as an int.

    static int

    Returns the length of the specified array object, as an int.

    static long

    Returns the value of the indexed component in the specified array object, as a long.

    static short

    Returns the value of the indexed component in the specified array object, as a short.

    newInstance(Class<?> componentType, int length)

    Creates a new array with the specified component type and length.

    newInstance(Class<?> componentType, int... dimensions)

    Creates a new array with the specified component type and dimensions.

    static void

    Sets the value of the indexed component of the specified array object to the specified new value.

    static void

    setBoolean(Object array, int index, boolean z)

    Sets the value of the indexed component of the specified array object to the specified boolean value.

    static void

    setByte(Object array, int index, byte b)

    Sets the value of the indexed component of the specified array object to the specified byte value.

    static void

    setChar(Object array, int index, char c)

    Sets the value of the indexed component of the specified array object to the specified char value.

    static void

    setDouble(Object array, int index, double d)

    Sets the value of the indexed component of the specified array object to the specified double value.

    static void

    setFloat(Object array, int index, float f)

    Sets the value of the indexed component of the specified array object to the specified float value.

    static void

    setInt(Object array, int index, int i)

    Sets the value of the indexed component of the specified array object to the specified int value.

    static void

    setLong(Object array, int index, long l)

    Sets the value of the indexed component of the specified array object to the specified long value.

    static void

    setShort(Object array, int index, short s)

    Sets the value of the indexed component of the specified array object to the specified short value.

    Methods declared in class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Creates and returns a copy of this object.

    boolean

    Indicates whether some other object is "equal to" this one.

    protected void

    Deprecated, for removal: This API element is subject to removal in a future version.

    Returns the runtime class of this Object.

    int

    Returns a hash code value for this object.

    final void

    Wakes up a single thread that is waiting on this object's monitor.

    final void

    Wakes up all threads that are waiting on this object's monitor.

    Returns a string representation of the object.

    final void

    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

    final void

    wait(long timeoutMillis)

    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

    final void

    wait(long timeoutMillis, int nanos)

    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

  • Method Details

    • newInstance

    • newInstance

    • getLength

    • get

    • getBoolean

    • getByte

    • getChar

    • getShort

    • getInt

    • getLong

    • getFloat

    • getDouble

    • set

    • setBoolean

    • setByte

    • setChar

    • setShort

    • setInt

    • setLong

    • setFloat

    • setDouble