Skip to content

v1.1.0

Latest
Compare
Choose a tag to compare
@ohtejera ohtejera released this 09 Feb 20:24
· 3 commits to master since this release

New Things

  • Added arrayAsList(String[]). Returns a fixed-size list backed by the specified Array.
  • Added arrayBinarySearch(byte[], byte). This method searches the specified Array of bytes for the specified value using the binary search algorithm.
  • Added arrayBinarySearch(char[], char). This method searches the specified Array of chars for the specified value using the binary search algorithm.
  • Added arrayBinarySearch(double[], double). This method searches the specified Array of doubles for the specified value using the binary search algorithm.
  • Added arrayBinarySearch(float[], float). This method searches the specified Array of floats for the specified value using the binary search algorithm.
  • Added arrayBinarySearch(int[], int). This method searches the specified Array of ints for the specified value using the binary search algorithm.
  • Added arrayBinarySearch(long[], long). This method searches the specified Array of longs for the specified value using the binary search algorithm.
  • Added arrayBinarySearch(short[], short). This method searches the specified Array of shorts for the specified value using the binary search algorithm.
  • Added arrayCopyOf(boolean[], int). This method copies the specified Array, truncating or padding with false (if necessary) so the copy has the specified length.
  • Added arrayCopyOf(char[], int). This method copies the specified array, truncating or padding with null characters (if necessary) so the copy has the specified length.
  • Added arrayCopyOf(double[], int). This method copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
  • Added arrayCopyOf(byte[], int). This method copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
  • Added arrayCopyOf(float[], int). This method copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
  • Added arrayCopyOf(int[], int). This method copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
  • Added arrayCopyOf(long[], int). This method copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
  • Added arrayCopyOf(short[], int). This method copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
  • Added arraySort(byte[]). This method sorts the specified array of bytes into ascending numerical order.
  • Added arraySort(char[]). This method sorts the specified array of chars into ascending numerical order.
  • Added arraySort(double[]). This method sorts the specified array of doubles into ascending numerical order.
  • Added arraySort(float[]). This method sorts the specified array of floats into ascending numerical order.
  • Added arraySort(int[]). This method sorts the specified array of int into ascending numerical order.
  • Added arraySort(long[]). This method sorts the specified array of longs into ascending numerical order.
  • Added arraySort(long[]). This method sorts the specified array of sorts into ascending numerical order.
  • Added arrayToString(boolean[]). This method returns a string representation of the contents of the specified boolean array.
  • Added arrayToString(byte[]). This method returns a string representation of the contents of the specified byte array.
  • Added arrayToString(char[]). This method returns a string representation of the contents of the specified char array.
  • Added arrayToString(double[]). This method returns a string representation of the contents of the specified double array.
  • Added arrayToString(float[]). This method returns a string representation of the contents of the specified float array.
  • Added arrayToString(int[]). This method returns a string representation of the contents of the specified int array.
  • Added arrayToString(long[]). This method returns a string representation of the contents of the specified long array.
  • Added arrayToString(short[]). This method returns a string representation of the contents of the specified short array.
  • Added arrayToString(String[]). This method returns a string representation of the contents of the specified String array.
  • Added arrayEquals(boolean[], boolean[]). This method returns true if the two specified arrays of booleans are equal to one another.
  • Added arrayEquals(byte[], byte[]). This method returns true if the two specified arrays of bytes are equal to one another.
  • Added arrayEquals(char[], char[]). This method returns true if the two specified arrays of chars are equal to one another.
  • Added arrayEquals(double[], double[]). This method returns true if the two specified arrays of doubles are equal to one another.
  • Added arrayEquals(float[], float[]). This method returns true if the two specified arrays of floats are equal to one another.
  • Added arrayEquals(int[], int[]). This method returns true if the two specified arrays of int are equal to one another.
  • Added arrayEquals(long[],long[]). This method returns true if the two specified arrays of long are equal to one another.
  • Added arrayEquals(short[],short[]). This method returns true if the two specified shorts of long are equal to one another.
  • Added arrayEquals(String[],String[]). This method returns true if the two specified Strings of long are equal to one another.
  • Added getEnv(String). Retrieves an environment variable.
  • Added getEnv(). Retrieve all environment variables along with their values.
  • Added arrayToClip(String[]). Sends the contents of an array of strings to the clipboard.
  • Added arrayToClip(byte[]). Sends the contents of an array of bytes to the clipboard.
  • Added arrayToClip(boolean[]). Sends the contents of an array of booleans to the clipboard.
  • Added arrayToClip(char[]). Sends the contents of an array of chars to the clipboard.
  • Added arrayToClip(double[]). Sends the contents of an array of doubles to the clipboard.
  • Added arrayToClip(float[]). Sends the contents of an array of floats to the clipboard.
  • Added arrayToClip(int[]). Sends the contents of an array of int to the clipboard.
  • Added arrayToClip(long[]). Sends the contents of an array of longs to the clipboard.
  • Added arrayToClip(short[]). Sends the contents of an array of shorts to the clipboard.