All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dermetfan.utils.ArrayUtils Maven / Gradle / Ivy

There is a newer version: 0.13.4
Show newest version
package net.dermetfan.utils;

import net.dermetfan.utils.math.Noise;

/** array utility methods
 *  @author dermetfan */
public abstract class ArrayUtils {

	/** @param array the array from which to access a value at the wrapped index
	 *  @return the value at the wrapped index
	 *  @see #wrapIndex(int, int) */
	public static  T wrapIndex(int index, T[] array) {
		return array[wrapIndex(index, array.length)];
	}

	/** @see #wrapIndex(int, Object[]) */
	public static int wrapIndex(int index, int[] array) {
		return array[wrapIndex(index, array.length)];
	}

	/** @see #wrapIndex(int, Object[]) */
	public static float wrapIndex(int index, float[] array) {
		return array[wrapIndex(index, array.length)];
	}

	/** Wraps the given index around the given length (of an array). For example for a length of 10:
* * * * * * * * *
indexreturns
00
55
100
155
200
555
* @param index the desired index * @param length the length of the array * @return the index wrapped around the array length */ public static int wrapIndex(int index, int length) { return (index + length) % length; } /** @param array the array that may contain the given value * @param value the value to search for in the given array * @param identity if {@code ==} comparison should be used instead of {@link Object#equals(Object) .equals()} * @return if the given value is contained in the given array */ public static boolean contains(T[] array, T value, boolean identity) { int i = array.length - 1; if(identity) { while(i >= 0) if(array[i--] == value) return true; } else while(i >= 0) if(array[i--].equals(value)) return true; return false; } /** @param array the array to check if it contains the other array's values * @param other the array to check if it is contained in the other array * @param the type of the containing array * @param the type of the contained array * @return if the second given array's values are completely contained in the first array */ public static boolean contains(T[] array, T2[] other, boolean identity) { for(T value : other) if(!contains(array, value, identity)) return false; return true; } /** @param array the array to check if it contains the other array's values * @param other the array to check if any of its values is contained in the other array * @param the type of the containing array * @param the type of the contained array * @return if any value from the second array is contained in the first array */ public static boolean containsAny(T[] array, T2[] other, boolean identity) { for(T value : other) if(contains(array, value, identity)) return true; return false; } /** shuffles the given array using {@link Noise#random(float, float)}, so the {@link Noise#setSeed(long) seed} influences the result * @param array the array to shuffle */ public static void shuffle(Object[] array) { for(int i = 0; i < array.length; i++) { int ii = (int) Noise.random(0, i + 1); Object temp = array[i]; array[i] = array[ii]; array[ii] = temp; } } /** @return an array of the unboxed values from the given values * @see #box(float[]) */ public static float[] unbox(Float[] values) { float[] unboxed = new float[values.length]; for(int i = 0; i < unboxed.length; i++) unboxed[i] = values[i]; return unboxed; } /** @return an array of the boxed values from the given values * @see #unbox(Float[]) */ public static Float[] box(float[] values) { Float[] boxed = new Float[values.length]; for(int i = 0; i < boxed.length; i++) boxed[i] = values[i]; return boxed; } /** @return an array of the unboxed values from the given values * @see #box(int[])*/ public static int[] unbox(Integer[] values) { int[] unboxed = new int[values.length]; for(int i = 0; i < unboxed.length; i++) unboxed[i] = values[i]; return unboxed; } /** @return an array of the boxed values from the given values * @see #unbox(Integer[]) */ public static Integer[] box(int[] values) { Integer[] boxed = new Integer[values.length]; for(int i = 0; i < boxed.length; i++) boxed[i] = values[i]; return boxed; } /** @return an array of the unboxed values from the given values * @see #box(boolean[])*/ public static boolean[] unbox(Boolean[] values) { boolean[] unboxed = new boolean[values.length]; for(int i = 0; i < unboxed.length; i++) unboxed[i] = values[i]; return unboxed; } /** @return an array of the boxed values from the given values * @see #unbox(Boolean[]) */ public static Boolean[] box(boolean[] values) { Boolean[] boxed = new Boolean[values.length]; for(int i = 0; i < boxed.length; i++) boxed[i] = values[i]; return boxed; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy