| Method Summary | |
|---|---|
| static List<T> |
Answers a List on the objects in the specified array. |
| static int |
Performs a binary search for the specified element in the specified sorted array. |
| static int |
Performs a binary search for the specified element in the specified sorted array. |
| static int |
Performs a binary search for the specified element in the specified sorted array using the Comparator to compare elements. |
| static int |
Performs a binary search for the specified element in the specified sorted array. |
| static int |
Performs a binary search for the specified element in the specified sorted array. |
| static int |
Performs a binary search for the specified element in the specified sorted array. |
| static int |
Performs a binary search for the specified element in the specified sorted array. |
| static int |
Performs a binary search for the specified element in the specified sorted array. |
| static int |
Performs a binary search for the specified element in the specified sorted array. |
| static boolean |
Returns the 'deep' equals for the two given arrays. |
| static int |
Returns the 'deep' hash code for the given array. |
| static String |
Creates a "deep" |
| static boolean |
Compares the two arrays. |
| static boolean |
Compares the two arrays. |
| static boolean |
Compares the two arrays. |
| static boolean |
Compares the two arrays. |
| static boolean |
Compares the two arrays. |
| static boolean |
Compares the two arrays. |
| static boolean |
Compares the two arrays. |
| static boolean |
Compares the two arrays. |
| static boolean |
Compares the two arrays. |
| static void |
Fills the section of the array between the given indices with the given value. |
| static void |
Fills the array with the given value. |
| static void |
Fills the section of the array between the given indices with the given value. |
| static void |
Fills the array with the given value. |
| static void |
Fills the array with the given value. |
| static void |
Fills the section of the array between the given indices with the given value. |
| static void |
Fills the array with the given value. |
| static void |
Fills the section of the array between the given indices with the given value. |
| static void |
Fills the array with the given value. |
| static void |
Fills the section of the array between the given indices with the given value. |
| static void |
Fills the array with the given value. |
| static void |
Fills the section of the array between the given indices with the given value. |
| static void |
Fills the array with the given value. |
| static void |
Fills the section of the array between the given indices with the given value. |
| static void |
Fills the array with the given value. |
| static void |
Fills the section of the array between the given indices with the given value. |
| static void |
Fills the array with the given value. |
| static void |
Fills the section of the array between the given indices with the given value. |
| static int |
Returns the hash code for the given array. |
| static int |
Returns the hash code for the given array. |
| static int |
Returns the hash code for the given array. |
| static int |
Returns the hash code for the given array. |
| static int |
Returns the hash code for the given array. |
| static int |
Returns the hash code for the given array. |
| static int |
Returns the hash code for the given array. |
| static int |
Returns the hash code for the given array. |
| static int |
Returns the hash code for the given array. |
| static void |
Performs a sort on given array. |
| static void |
Performs a sort on the section of the array between the given indices. |
| static void |
Performs a sort on the given array. |
| static void |
Performs a sort on the section of the array between the given indices. |
| static void |
Performs a sort on the section of the array between the given indices. |
| static void |
Performs a sort on the given array. |
| static void |
Performs a sort on the given array. |
| static void |
Performs a sort on the given array. |
| static void |
Performs a sort on the given array. |
| static void |
Performs a sort on the section of the array between the given indices. |
| static void |
Performs a sort on the given array. |
| static void |
Performs a sort on the section of the array between the given indices. |
| static void |
Performs a sort on the given array. |
| static void |
Performs a sort on the section of the array between the given indices. |
| static void |
Performs a sort on the given array. |
| static void |
Performs a sort on the section of the array between the given indices. |
| static void |
Performs a sort on the given array. |
| static void |
Performs a sort on the section of the array between the given indices. |
| static String |
Creates a |
| static String |
Creates a String representation of the
short[] passed.
|
| static String |
Creates a |
| static String |
Creates a |
| static String |
Creates a |
| static String |
Creates a |
| static String |
Creates a |
| static String |
Creates a |
| static String |
Creates a String representation of the byte[]
passed.
|
| Methods inherited from java.langObject |
|---|
public static
int
binarySearch
(
long
[]
array,
long
value
)
public static
int
binarySearch
(
Object
[]
array,
Object
object
)
public static
int
binarySearch
(
short
[]
array,
short
value
)
public static
int
binarySearch
(
double
[]
array,
double
value
)
public static
int
binarySearch
(
byte
[]
array,
byte
value
)
public static
int
binarySearch
(
char
[]
array,
char
value
)
public static
int
binarySearch
(
int
[]
array,
int
value
)
public static
int
binarySearch
(
float
[]
array,
float
value
)
Arrays.equals method
is used to determine their equality. Otherwise for two
Object arrays deepEquals is called
recursively.
This method should not be used if either of the arrays, or any arrays
contained within it are likely to contain a reference to itself.
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.
If any of the elements are primitive arrays, the generation is delegated
to the other toString methods in this class. If any
element contains a reference to the original array, then it will be
represented as "[...]". If an element is an
Object[], then its representation is generated by a
recursive call to this method. All other elements are converted via the
valueOf(Object) method.
public static
boolean
equals
(
double
[]
array1,
double
[]
array2
)
public static
boolean
equals
(
float
[]
array1,
float
[]
array2
)
public static
void
fill
(
boolean
[]
array,
boolean
value
)
public static
void
fill
(
boolean
[]
array,
int
start,
int
end,
boolean
value
)
public static
void
fill
(
byte
[]
array,
byte
value
)
public static
void
fill
(
byte
[]
array,
int
start,
int
end,
byte
value
)
public static
void
fill
(
short
[]
array,
short
value
)
public static
void
fill
(
short
[]
array,
int
start,
int
end,
short
value
)
public static
void
fill
(
char
[]
array,
char
value
)
public static
void
fill
(
char
[]
array,
int
start,
int
end,
char
value
)
public static
void
fill
(
int
[]
array,
int
value
)
public static
void
fill
(
int
[]
array,
int
start,
int
end,
int
value
)
public static
void
fill
(
long
[]
array,
long
value
)
public static
void
fill
(
long
[]
array,
int
start,
int
end,
long
value
)
public static
void
fill
(
float
[]
array,
float
value
)
public static
void
fill
(
float
[]
array,
int
start,
int
end,
float
value
)
public static
void
fill
(
double
[]
array,
double
value
)
public static
void
fill
(
double
[]
array,
int
start,
int
end,
double
value
)
public static
int
hashCode
(
byte
[]
array
)
public static
int
hashCode
(
long
[]
array
)
public static
int
hashCode
(
double
[]
array
)
public static
int
hashCode
(
float
[]
array
)
public static
int
hashCode
(
char
[]
array
)
public static
int
hashCode
(
int
[]
array
)
public static
int
hashCode
(
short
[]
array
)
public static
int
hashCode
(
boolean
[]
array
)
public static
void
sort
(
long
[]
array
)
public static
void
sort
(
long
[]
array,
int
start,
int
end
)
public static
void
sort
(
short
[]
array
)
public static
void
sort
(
short
[]
array,
int
start,
int
end
)
public static
void
sort
(
int
[]
array
)
public static
void
sort
(
int
[]
array,
int
start,
int
end
)
public static
void
sort
(
double
[]
array
)
public static
void
sort
(
double
[]
array,
int
start,
int
end
)
public static
void
sort
(
float
[]
array
)
public static
void
sort
(
float
[]
array,
int
start,
int
end
)
public static
void
sort
(
char
[]
array
)
public static
void
sort
(
char
[]
array,
int
start,
int
end
)
public static
void
sort
(
byte
[]
array
)
public static
void
sort
(
byte
[]
array,
int
start,
int
end
)
Creates a String representation of the
Object[] passed. The result is surrounded by brackets ("[]"),
each element is converted to a String via the
valueOf(Object) and separated by
", ". If the array is null,
then "null" is returned.
String representation of the
short[] passed.
The result is surrounded by brackets ("[]"),
each element is converted to a String via the
valueOf(int) and separated by ", ".
If the array is null, then "null"
is returned.
Creates a String representation of the int[]
passed. The result is surrounded by brackets ("[]"),
each element is converted to a String via the
valueOf(int) and separated by ", ".
If the array is null, then "null"
is returned.
Creates a String representation of the long[]
passed. The result is surrounded by brackets ("[]"),
each element is converted to a String via the
valueOf(long) and separated by ", ".
If the array is null, then "null"
is returned.
Creates a String representation of the char[]
passed. The result is surrounded by brackets ("[]"),
each element is converted to a String via the
valueOf(char) and separated by ", ".
If the array is null, then "null"
is returned.
Creates a String representation of the
boolean[] passed. The result is surrounded by brackets ("[]"),
each element is converted to a String via the
valueOf(boolean) and separated by
", ". If the array is null,
then "null" is returned.
Creates a String representation of the
float[] passed. The result is surrounded by brackets ("[]"),
each element is converted to a String via the
valueOf(float) and separated by
", ". If the array is null,
then "null" is returned.
Creates a String representation of the
double[] passed. The result is surrounded by brackets ("[]"),
each element is converted to a String via the
valueOf(double) and separated by
", ". If the array is null,
then "null" is returned.
String representation of the byte[]
passed.
The result is surrounded by brackets ("[]"),
each element is converted to a String via the
valueOf(int) and separated by ", ".
If the array is null, then "null"
is returned.