Java.Lang.Reflect.Array: Method Members

The methods of Java.Lang.Reflect.Array are listed below. For a list of all members, see the Array Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

static
Get(Java.Lang.Object, int) : Java.Lang.Object
Returns the element of the array at the specified index.
static
GetBoolean(Java.Lang.Object, int) : bool
Returns the boolean at the given index in the given boolean array.
static
GetByte(Java.Lang.Object, int) : sbyte
Returns the byte at the given index in the given byte array.
static
GetChar(Java.Lang.Object, int) : char
Returns the char at the given index in the given char array.
static
GetDouble(Java.Lang.Object, int) : double
Returns the double at the given index in the given array.
static
GetFloat(Java.Lang.Object, int) : float
Returns the float at the given index in the given array.
static
GetInt(Java.Lang.Object, int) : int
Returns the int at the given index in the given array.
static
GetLength(Java.Lang.Object) : int
Returns the length of the array.
static
GetLong(Java.Lang.Object, int) : long
Returns the long at the given index in the given array.
static
GetShort(Java.Lang.Object, int) : short
Returns the short at the given index in the given array.
static
NewInstance(Java.Lang.Class, int) : Java.Lang.Object
Documentation for this section has not yet been entered.
static
NewInstance(Java.Lang.Class, params int[]) : Java.Lang.Object
Documentation for this section has not yet been entered.
static
Set(Java.Lang.Object, int, Java.Lang.Object)
Sets the element of the array at the specified index to the value.
static
SetBoolean(Java.Lang.Object, int, bool)
Sets array[index] = value.
static
SetByte(Java.Lang.Object, int, sbyte)
Sets array[index] = value.
static
SetChar(Java.Lang.Object, int, char)
Sets array[index] = value.
static
SetDouble(Java.Lang.Object, int, double)
Sets array[index] = value.
static
SetFloat(Java.Lang.Object, int, float)
Sets array[index] = value.
static
SetInt(Java.Lang.Object, int, int)
Sets array[index] = value.
static
SetLong(Java.Lang.Object, int, long)
Sets array[index] = value.
static
SetShort(Java.Lang.Object, int, short)
Sets array[index] = value.