java.lang.Object | |
↳ | com.pnfsoftware.jeb.util.collect.ArrayUtil |
Utility methods for arrays.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
public static final boolean[] | NO_BOOLEAN | ||||||||||
public static final byte[] | NO_BYTE | ||||||||||
public static final char[] | NO_CHAR | ||||||||||
public static final double[] | NO_DOUBLE | ||||||||||
public static final float[] | NO_FLOAT | ||||||||||
public static final int[] | NO_INT | ||||||||||
public static final long[] | NO_LONG | ||||||||||
public static final Object[] | NO_OBJECT | An empty immutable Object Object[] array. | |||||||||
public static final short[] | NO_SHORT | ||||||||||
public static final String[] | NO_STRING | An empty immutable String String[] array. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ArrayUtil() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
static List<Byte> |
asList(byte[] array)
A variant of
asList(Object) that accepts primitives. | ||||||||||
static List<Boolean> |
asList(boolean[] array)
A variant of
asList(Object) that accepts primitives. | ||||||||||
static List<Short> |
asList(short[] array)
A variant of
asList(Object) that accepts primitives. | ||||||||||
static List<Character> |
asList(char[] array)
A variant of
asList(Object) that accepts primitives. | ||||||||||
static List<Double> |
asList(double[] array)
A variant of
asList(Object) that accepts primitives. | ||||||||||
static List<Long> |
asList(long[] array)
A variant of
asList(Object) that accepts primitives. | ||||||||||
static List<Integer> |
asList(int[] array)
A variant of
asList(Object) that accepts primitives. | ||||||||||
static List<Float> |
asList(float[] array)
A variant of
asList(Object) that accepts primitives. | ||||||||||
static <T> List<T> |
asView(T... arrays)
Provide a continuous read-only view of an array of arrays.
| ||||||||||
static <T> List<T> |
asView(T[] a, T[] b)
Provide a continuous read-only view of two arrays.
| ||||||||||
static <T> List<T> |
asView(T[] a)
Provide a continuous read-only view of an array.
| ||||||||||
static int[] |
bytesToIntegers(byte[] input)
Convert a byte array to an int array with the same exact values (that means the bytes are
sign extended).
| ||||||||||
static void | checkOffsetAndCount(int arrayLength, int offset, int count) | ||||||||||
static int |
compareBytes(byte[] array1, int pos1, byte[] array2, int pos2, int size)
Compare arrays of bytes.
| ||||||||||
static void |
copyBytes(byte[] dst, int dstOffset, byte[] src, int srcOffset, int size)
Wrapper around
Java's arraycopy() . | ||||||||||
static boolean |
equalsBytes(byte[] array1, int pos1, byte[] array2, int pos2, int size)
An extended version of
equals(boolean[], boolean[]) . | ||||||||||
static int | find(int[] array, int value) | ||||||||||
static int | find(long[] array, long value) | ||||||||||
static int | find(float[] array, float value) | ||||||||||
static int | find(boolean[] array, boolean value) | ||||||||||
static int | find(short[] array, short value) | ||||||||||
static int | find(byte[] array, byte value) | ||||||||||
static int | find(double[] array, double value) | ||||||||||
static int | find(char[] array, char value) | ||||||||||
static int | findByEquality(Object[] array, Object value) | ||||||||||
static int | findByReference(Object[] array, Object value) | ||||||||||
static <T> T |
getSafe(T[] array, int index, T defaultValue)
Retrieve a value from an array, or default value if index is out of bound or value from array
is null.
| ||||||||||
static <T> T |
getSafe2(T[][] array, int index, int index2, T defaultValue)
Retrieve a value from a 2 dimension array, or default value if index is out of bound (from
any array) or value from array is null.
| ||||||||||
static <T> T | getSafe3(T[][][] array, int index, int index2, int index3, T defaultValue) | ||||||||||
static byte[] |
integersToBytes(int[] input)
Convert an int array into a byte array by casting all integers to bytes.
| ||||||||||
static boolean |
isSled(byte[] array, byte value)
Check if an array contains a same repeated value.
| ||||||||||
static void |
swap(short[] array)
Flip the order of an array of shorts.
| ||||||||||
static <T> void |
swap(T[] array)
Flip the order of an array of generic objects.
| ||||||||||
static void |
swap(double[] array)
Flip the order of an array of doubles.
| ||||||||||
static void |
swap(float[] array)
Flip the order of an array of floats.
| ||||||||||
static void |
swap(double[] array, int offset, int size)
Flip the order of an array of doubles.
| ||||||||||
static void |
swap(boolean[] array)
Flip the order of an array of booleans.
| ||||||||||
static void |
swap(long[] array)
Flip the order of an array of longs.
| ||||||||||
static void |
swap(char[] array)
Flip the order of an array of chars.
| ||||||||||
static void |
swap(float[] array, int offset, int size)
Flip the order of an array of floats.
| ||||||||||
static void |
swap(byte[] array, int offset, int size)
Flip the order of an array of bytes.
| ||||||||||
static void |
swap(char[] array, int offset, int size)
Flip the order of an array of chars.
| ||||||||||
static void |
swap(int[] array, int offset, int size)
Flip the order of an array of ints.
| ||||||||||
static void |
swap(byte[] array)
Flip the order of an array of bytes.
| ||||||||||
static void |
swap(int[] array)
Flip the order of an array of ints.
| ||||||||||
static void |
swap(boolean[] array, int offset, int size)
Flip the order of an array of booleans.
| ||||||||||
static <T> void |
swap(T[] array, int offset, int size)
Flip the order of an array of generic objects.
| ||||||||||
static void |
swap(long[] array, int offset, int size)
Flip the order of an array of longs.
| ||||||||||
static void |
swap(short[] array, int offset, int size)
Flip the order of an array of shorts.
| ||||||||||
static int[] |
unsignedBytesToIntegers(byte[] input)
Convert an array of unsigned bytes to an array of integers.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
An empty immutable Object Object[] array.
An empty immutable String String[] array.
A variant of asList(Object)
that accepts primitives.
A variant of asList(Object)
that accepts primitives.
A variant of asList(Object)
that accepts primitives.
A variant of asList(Object)
that accepts primitives.
A variant of asList(Object)
that accepts primitives.
A variant of asList(Object)
that accepts primitives.
Provide a continuous read-only view of an array of arrays. This method is well suited for 3+ arrays.
arrays | the arrays |
---|
Provide a continuous read-only view of two arrays.
a | first array (non-null) |
---|---|
b | second array (non-null) |
Provide a continuous read-only view of an array.
Convert a byte array to an int array with the same exact values (that means the bytes are sign extended).
input | byte array |
---|
Compare arrays of bytes. This method raises an ArrayIndexOutOfBoundsException exception if either one of the input arrays does not contain enough bytes to be compared.
array1 | first array |
---|---|
pos1 | where to start in the first array |
array2 | second array |
pos2 | where to start in the second array |
size | number of bytes to be compared |
Wrapper around Java's arraycopy()
.
Copy bytes from a source to a destination. If the destination and source arrays are the same, potential overlaps are properly handled. This method does not validate bounds or arguments: NullPointerException and ArrayIndexOutOfBoundsException can be raised.
dst | destination array |
---|---|
dstOffset | start offset in the destination array |
src | source array source array, potentially the same as the destination array |
srcOffset | start offset in the source array |
size | number of bytes to be copied |
An extended version of equals(boolean[], boolean[])
.
Retrieve a value from an array, or default value if index is out of bound or value from array is null.
array | the array |
---|---|
index | the index of the array |
defaultValue | default value to return in case of error |
Retrieve a value from a 2 dimension array, or default value if index is out of bound (from any array) or value from array is null. This is an equivalent of getSafe(getSafe(array, index, new T[]{}), index2, default)
array | the array |
---|---|
index | the index of the first array |
index2 | the index of the second array |
defaultValue | default value to return in case of error |
Convert an int array into a byte array by casting all integers to bytes.
input | int array |
---|
Check if an array contains a same repeated value.
array | the array to be checked |
---|---|
value | the sled value |
Flip the order of an array of shorts.
Flip the order of an array of generic objects.
Flip the order of an array of doubles.
Flip the order of an array of floats.
Flip the order of an array of doubles.
Flip the order of an array of booleans.
Flip the order of an array of longs.
Flip the order of an array of chars.
Flip the order of an array of floats.
Flip the order of an array of bytes.
Flip the order of an array of chars.
Flip the order of an array of ints.
Flip the order of an array of bytes.
Flip the order of an array of ints.
Flip the order of an array of booleans.
Flip the order of an array of generic objects.
Flip the order of an array of longs.
Flip the order of an array of shorts.
Convert an array of unsigned bytes to an array of integers.
input | byte array, for which the bytes are treated as unsigned |
---|