Package toxi.util.datatypes
Class ArrayUtil
java.lang.Object
toxi.util.datatypes.ArrayUtil
A collection of array utilities.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <T> voidaddArrayToCollection(T[] array, Collection<T> collection) Adds all array elements to the given collection of the same type.static <T> ArrayList<T>arrayToList(T[] array) Converts the generic array into anArrayListof the same type.static float[]getAsNormalizedFloatArray(int[] source, int bits, int mask, int peak, float target) Creates a normalized version of the values of the given int[] array.static intindexInArray(float needle, float[] stack, int maxLen) Returns the index of the element where the given value is found in the array.static intindexInArray(int needle, int[] stack, int maxLen) Returns the index of the element where the given value is found in the array.static intindexInArray(Object needle, Object[] stack, int maxLen) Returns the index of the element where the given value is found in the array.static float[]normalizeFloatArray(float[] buffer, float peak, float target) Normalizes the values in the given array to the new absolute target value.static voidreverse(byte[] array) Reverses the item order of the supplied byte array.static voidreverse(char[] array) Reverses the item order of the supplied char array.static voidreverse(float[] array) Reverses the item order of the supplied float array.static voidreverse(int[] array) Reverses the item order of the supplied int array.static voidreverse(short[] array) Reverses the item order of the supplied short array.static <T> voidreverse(T[] array) Reverses the item order of the supplied array (generic types).static <T> voidshuffle(T[] array) Rearranges the array items in random order using the default java.util.Random generator.static <T> voidRearranges the array items in random order using the given RNG.static StringtoString(byte[] array) static StringtoString(double[] array) static StringtoString(float[] array) static StringtoString(int[] array) static <T> StringtoString(T[] array)
-
Constructor Details
-
ArrayUtil
public ArrayUtil()
-
-
Method Details
-
addArrayToCollection
Adds all array elements to the given collection of the same type.- Type Parameters:
T-- Parameters:
array- arraycollection- existing collection or null (to create a newArrayListautomatically)
-
arrayToList
Converts the generic array into anArrayListof the same type.- Parameters:
array-- Returns:
- array list version
-
getAsNormalizedFloatArray
public static float[] getAsNormalizedFloatArray(int[] source, int bits, int mask, int peak, float target) Creates a normalized version of the values of the given int[] array. Supports packed integers (e.g. ARGB data) by allowing to specify a bitshift amount & bitmask, e.g. do this to get the normalized representation of the red channel of an ARGB array:// use 16 bits as shift offset for accessing red channel float[] red = ArrayUtil.getAsNormalizedFloatArray(argbPixels, 16, 255, 255);
- Parameters:
source- source databits- number of bits to right shift each valuemask- bitmask to apply after bitshiftingpeak- peak value (in the source domain) to normalize againsttarget- peak of the normalized values- Returns:
- normalized values
-
indexInArray
public static int indexInArray(float needle, float[] stack, int maxLen) Returns the index of the element where the given value is found in the array.- Parameters:
needle- number to findstack- array to searchmaxLen- number of elements to search- Returns:
- array index or -1 if value couldn't be found in array
-
indexInArray
public static int indexInArray(int needle, int[] stack, int maxLen) Returns the index of the element where the given value is found in the array.- Parameters:
needle- number to findstack- array to searchmaxLen- number of elements to search- Returns:
- array index or -1 if value couldn't be found in array
-
indexInArray
Returns the index of the element where the given value is found in the array. The comparison usesObject.equals(Object).- Parameters:
needle- number to findstack- array to searchmaxLen- number of elements to search- Returns:
- array index or -1 if value couldn't be found in array
-
normalizeFloatArray
public static float[] normalizeFloatArray(float[] buffer, float peak, float target) Normalizes the values in the given array to the new absolute target value. The original values are overridden.- Parameters:
buffer- arraypeak- current peak in the source domaintarget- new peak in the target domain- Returns:
- normalized array
-
reverse
public static void reverse(byte[] array) Reverses the item order of the supplied byte array.- Parameters:
array-
-
reverse
public static void reverse(char[] array) Reverses the item order of the supplied char array.- Parameters:
array-
-
reverse
public static void reverse(float[] array) Reverses the item order of the supplied float array.- Parameters:
array-
-
reverse
public static void reverse(int[] array) Reverses the item order of the supplied int array.- Parameters:
array-
-
reverse
public static void reverse(short[] array) Reverses the item order of the supplied short array.- Parameters:
array-
-
reverse
public static <T> void reverse(T[] array) Reverses the item order of the supplied array (generic types).- Parameters:
array-
-
shuffle
public static <T> void shuffle(T[] array) Rearranges the array items in random order using the default java.util.Random generator. Operation is in-place, no copy is created.- Parameters:
array-
-
shuffle
Rearranges the array items in random order using the given RNG. Operation is in-place, no copy is created.- Parameters:
array-rnd-
-
toString
-
toString
-
toString
-
toString
-
toString
-