Java.Util.Arrays Members

The members of Java.Util.Arrays are listed below.

See Also: Inherited members from Java.Lang.Object

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Protected Properties

[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

static
AsList(params Java.Lang.Object[]) : IList
Documentation for this section has not yet been entered.
static
BinarySearch(Java.Lang.Object[], Java.Lang.Object) : int
Performs a binary search for value in the ascending sorted array array.
static
BinarySearch(byte[], sbyte) : int
Performs a binary search for value in the ascending sorted array array.
static
BinarySearch(char[], char) : int
Performs a binary search for value in the ascending sorted array array.
static
BinarySearch(double[], double) : int
Performs a binary search for value in the ascending sorted array array.
static
BinarySearch(short[], short) : int
Performs a binary search for value in the ascending sorted array array.
static
BinarySearch(int[], int) : int
Performs a binary search for value in the ascending sorted array array.
static
BinarySearch(long[], long) : int
Performs a binary search for value in the ascending sorted array array.
static
BinarySearch(float[], float) : int
Performs a binary search for value in the ascending sorted array array.
static
BinarySearch(Java.Lang.Object[], Java.Lang.Object, IComparator) : int
Documentation for this section has not yet been entered.
static
BinarySearch(Java.Lang.Object[], int, int, Java.Lang.Object) : int
Performs a binary search for value in the ascending sorted array array, in the range specified by fromIndex (inclusive) and toIndex (exclusive).
static
BinarySearch(byte[], int, int, sbyte) : int
Performs a binary search for value in the ascending sorted array array, in the range specified by fromIndex (inclusive) and toIndex (exclusive).
static
BinarySearch(char[], int, int, char) : int
Performs a binary search for value in the ascending sorted array array, in the range specified by fromIndex (inclusive) and toIndex (exclusive).
static
BinarySearch(double[], int, int, double) : int
Performs a binary search for value in the ascending sorted array array, in the range specified by fromIndex (inclusive) and toIndex (exclusive).
static
BinarySearch(short[], int, int, short) : int
Performs a binary search for value in the ascending sorted array array, in the range specified by fromIndex (inclusive) and toIndex (exclusive).
static
BinarySearch(int[], int, int, int) : int
Performs a binary search for value in the ascending sorted array array, in the range specified by fromIndex (inclusive) and toIndex (exclusive).
static
BinarySearch(long[], int, int, long) : int
Performs a binary search for value in the ascending sorted array array, in the range specified by fromIndex (inclusive) and toIndex (exclusive).
static
BinarySearch(float[], int, int, float) : int
Performs a binary search for value in the ascending sorted array array, in the range specified by fromIndex (inclusive) and toIndex (exclusive).
static
BinarySearch(Java.Lang.Object[], int, int, Java.Lang.Object, IComparator) : int
Documentation for this section has not yet been entered.
static
CopyOf(Java.Lang.Object[], int) : Java.Lang.Object[]
Documentation for this section has not yet been entered.
static
CopyOf(bool[], int) : bool[]
Copies newLength elements from original into a new array.
static
CopyOf(byte[], int) : byte[]
Copies newLength elements from original into a new array.
static
CopyOf(char[], int) : char[]
Copies newLength elements from original into a new array.
static
CopyOf(double[], int) : double[]
Copies newLength elements from original into a new array.
static
CopyOf(short[], int) : short[]
Copies newLength elements from original into a new array.
static
CopyOf(int[], int) : int[]
Copies newLength elements from original into a new array.
static
CopyOf(long[], int) : long[]
Copies newLength elements from original into a new array.
static
CopyOf(float[], int) : float[]
Copies newLength elements from original into a new array.
static
CopyOf(Java.Lang.Object[], int, Java.Lang.Class) : Java.Lang.Object[]
Documentation for this section has not yet been entered.
static
CopyOfRange(Java.Lang.Object[], int, int) : Java.Lang.Object[]
Documentation for this section has not yet been entered.
static
CopyOfRange(bool[], int, int) : bool[]
Copies elements from original into a new array, from indexes start (inclusive) to end (exclusive).
static
CopyOfRange(byte[], int, int) : byte[]
Copies elements from original into a new array, from indexes start (inclusive) to end (exclusive).
static
CopyOfRange(char[], int, int) : char[]
Copies elements from original into a new array, from indexes start (inclusive) to end (exclusive).
static
CopyOfRange(double[], int, int) : double[]
Copies elements from original into a new array, from indexes start (inclusive) to end (exclusive).
static
CopyOfRange(short[], int, int) : short[]
Copies elements from original into a new array, from indexes start (inclusive) to end (exclusive).
static
CopyOfRange(int[], int, int) : int[]
Copies elements from original into a new array, from indexes start (inclusive) to end (exclusive).
static
CopyOfRange(long[], int, int) : long[]
Copies elements from original into a new array, from indexes start (inclusive) to end (exclusive).
static
CopyOfRange(float[], int, int) : float[]
Copies elements from original into a new array, from indexes start (inclusive) to end (exclusive).
static
CopyOfRange(Java.Lang.Object[], int, int, Java.Lang.Class) : Java.Lang.Object[]
Documentation for this section has not yet been entered.
static
DeepEquals(Java.Lang.Object[], Java.Lang.Object[]) : bool
Returns true if the two given arrays are deeply equal to one another.
static
DeepHashCode(Java.Lang.Object[]) : int
Returns a hash code based on the "deep contents" of the given array.
static
DeepToString(Java.Lang.Object[]) : string
Creates a "deep"String representation of the Object[] passed, such that if the array contains other arrays, the String representation of those arrays is generated as well.
static
Equals(Java.Lang.Object[], Java.Lang.Object[]) : bool
Compares the two arrays.
static
Equals(bool[], bool[]) : bool
Compares the two arrays.
static
Equals(byte[], byte[]) : bool
Compares the two arrays.
static
Equals(char[], char[]) : bool
Compares the two arrays.
static
Equals(double[], double[]) : bool
Compares the two arrays.
static
Equals(short[], short[]) : bool
Compares the two arrays.
static
Equals(int[], int[]) : bool
Compares the two arrays.
static
Equals(long[], long[]) : bool
Compares the two arrays.
static
Equals(float[], float[]) : bool
Compares the two arrays.
static
Fill(Java.Lang.Object[], Java.Lang.Object)
Fills the specified array with the specified element.
static
Fill(bool[], bool)
Fills the specified array with the specified element.
static
Fill(byte[], sbyte)
Fills the specified array with the specified element.
static
Fill(char[], char)
Fills the specified array with the specified element.
static
Fill(double[], double)
Fills the specified array with the specified element.
static
Fill(short[], short)
Fills the specified array with the specified element.
static
Fill(int[], int)
Fills the specified array with the specified element.
static
Fill(long[], long)
Fills the specified array with the specified element.
static
Fill(float[], float)
Fills the specified array with the specified element.
static
Fill(Java.Lang.Object[], int, int, Java.Lang.Object)
Fills the specified range in the array with the specified element.
static
Fill(bool[], int, int, bool)
Fills the specified range in the array with the specified element.
static
Fill(byte[], int, int, sbyte)
Fills the specified range in the array with the specified element.
static
Fill(char[], int, int, char)
Fills the specified range in the array with the specified element.
static
Fill(double[], int, int, double)
Fills the specified range in the array with the specified element.
static
Fill(short[], int, int, short)
Fills the specified range in the array with the specified element.
static
Fill(int[], int, int, int)
Fills the specified range in the array with the specified element.
static
Fill(long[], int, int, long)
Fills the specified range in the array with the specified element.
static
Fill(float[], int, int, float)
Fills the specified range in the array with the specified element.
static
HashCode(Java.Lang.Object[]) : int
Returns a hash code based on the contents of the given array.
static
HashCode(bool[]) : int
Returns a hash code based on the contents of the given array.
static
HashCode(byte[]) : int
Returns a hash code based on the contents of the given array.
static
HashCode(char[]) : int
Returns a hash code based on the contents of the given array.
static
HashCode(double[]) : int
Returns a hash code based on the contents of the given array.
static
HashCode(short[]) : int
Returns a hash code based on the contents of the given array.
static
HashCode(int[]) : int
Returns a hash code based on the contents of the given array.
static
HashCode(long[]) : int
Returns a hash code based on the contents of the given array.
static
HashCode(float[]) : int
Returns a hash code based on the contents of the given array.
static
Sort(Java.Lang.Object[])
Sorts the specified array in ascending natural order.
static
Sort(byte[])
Sorts the specified array in ascending numerical order.
static
Sort(char[])
Sorts the specified array in ascending numerical order.
static
Sort(double[])
Sorts the specified array in ascending numerical order.
static
Sort(short[])
Sorts the specified array in ascending numerical order.
static
Sort(int[])
Sorts the specified array in ascending numerical order.
static
Sort(long[])
Sorts the specified array in ascending numerical order.
static
Sort(float[])
Sorts the specified array in ascending numerical order.
static
Sort(Java.Lang.Object[], IComparator)
Documentation for this section has not yet been entered.
static
Sort(Java.Lang.Object[], int, int)
Sorts the specified range in the array in ascending natural order.
static
Sort(byte[], int, int)
Sorts the specified range in the array in ascending numerical order.
static
Sort(char[], int, int)
Sorts the specified range in the array in ascending numerical order.
static
Sort(double[], int, int)
Sorts the specified range in the array in ascending numerical order.
static
Sort(short[], int, int)
Sorts the specified range in the array in ascending numerical order.
static
Sort(int[], int, int)
Sorts the specified range in the array in ascending numerical order.
static
Sort(long[], int, int)
Sorts the specified range in the array in ascending numerical order.
static
Sort(float[], int, int)
Sorts the specified range in the array in ascending numerical order.
static
Sort(Java.Lang.Object[], int, int, IComparator)
Documentation for this section has not yet been entered.
static
ToString(Java.Lang.Object[]) : string
Creates a String representation of the Object[] passed.
static
ToString(bool[]) : string
Creates a String representation of the boolean[] passed.
static
ToString(byte[]) : string
Creates a String representation of the byte[] passed.
static
ToString(char[]) : string
Creates a String representation of the char[] passed.
static
ToString(double[]) : string
Creates a String representation of the double[] passed.
static
ToString(short[]) : string
Creates a String representation of the short[] passed.
static
ToString(int[]) : string
Creates a String representation of the int[] passed.
static
ToString(long[]) : string
Creates a String representation of the long[] passed.
static
ToString(float[]) : string
Creates a String representation of the float[] passed.