static int |
ManArrayExt.binarySearch(Object array,
int from,
int to,
Object key) |
|
static int |
ManArrayExt.binarySearch(Object array,
int from,
int to,
Object key,
Comparator<? super Object> comparator) |
|
static int |
ManArrayExt.binarySearch(Object array,
Object key) |
|
static int |
ManArrayExt.binarySearch(Object array,
Object key,
Comparator<? super Object> comparator) |
|
static Object |
ManArrayExt.copy(Object array) |
|
static Object |
ManArrayExt.copy(Object array,
int newLength) |
Copies this array's elements into a new array of the specified newLength.
|
static Object |
ManArrayExt.copyRange(Object array,
int from,
int to) |
Copies a range of elements from this array to a newly allocated array.
|
static Object |
ManArrayExt.copyRangeTo(Object array,
int from,
int to,
Object target,
int targetIndex) |
Copies a range of elements from this array to the target array.
|
static Object |
ManArrayExt.copyTo(Object array,
Object to) |
Copies the elements of this array to a specified array, truncating or padding with nulls as needed.
|
static boolean |
ManArrayExt.equals(Object array,
Object that) |
|
static Object |
ManArrayExt.first(Object array) |
|
static void |
ManArrayExt.forEach(Object array,
IndexedConsumer<? super Object> action) |
|
static int |
ManArrayExt.hashCode(Object array) |
|
static boolean |
ManArrayExt.isEmpty(Object array) |
|
static boolean |
ManArrayExt.isNullOrEmpty(Object array) |
|
static Object |
ManArrayExt.last(Object array) |
|
static Spliterator<Object> |
ManArrayExt.spliterator(Object array) |
|
static Stream<Object> |
ManArrayExt.stream(Object array) |
Returns a sequential Stream with this array as its source.
|
static List<Object> |
ManArrayExt.toList(Object array) |
Returns a fixed-size list backed by the specified array.
|
static String |
ManArrayExt.toString(Object array) |
|