/* ==================================================================== * The Apache Software License, Version 1.1 * * Copyright (c) 2002-2003 The Apache Software Foundation. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * 3. The end-user documentation included with the redistribution, if * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." * Alternately, this acknowledgement may appear in the software itself, * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived * from this software without prior written permission. For written * permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache" * nor may "Apache" appear in their names without prior written * permission of the Apache Software Foundation. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation. For more * information on the Apache Software Foundation, please see * . */ package org.apache.commons.lang; import java.util.HashMap; import java.util.Map; import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder; import org.apache.commons.lang.builder.ToStringBuilder; import org.apache.commons.lang.builder.ToStringStyle; /** *

Operations on arrays, primitive arrays (like int[]) and primitive wrapper arrays * (like Integer[]).

* *

This class tries to handle null input gracefully. * An exception will not be thrown for a null * array input. However, an Object array that contains a null * element may throw an exception. Each method documents its behaviour.

* * @author Stephen Colebourne * @author Moritz Petersen * @author Fredrik Westermarck * @author Nikolay Metchev * @author Matthew Hawthorne * @author Tim O'Brien * @author Pete Gieser * @author Gary Gregory * @since 2.0 * @version $Id$ */ public class ArrayUtils { /** * An empty immutable Object array. */ public static final Object[] EMPTY_OBJECT_ARRAY = new Object[0]; /** * An empty immutable Class array. */ public static final Class[] EMPTY_CLASS_ARRAY = new Class[0]; /** * An empty immutable String array. */ public static final String[] EMPTY_STRING_ARRAY = new String[0]; /** * An empty immutable long array. */ public static final long[] EMPTY_LONG_ARRAY = new long[0]; /** * An empty immutable Long array. */ public static final Long[] EMPTY_LONG_OBJECT_ARRAY = new Long[0]; /** * An empty immutable int array. */ public static final int[] EMPTY_INT_ARRAY = new int[0]; /** * An empty immutable Integer array. */ public static final Integer[] EMPTY_INTEGER_OBJECT_ARRAY = new Integer[0]; /** * An empty immutable short array. */ public static final short[] EMPTY_SHORT_ARRAY = new short[0]; /** * An empty immutable Short array. */ public static final Short[] EMPTY_SHORT_OBJECT_ARRAY = new Short[0]; /** * An empty immutable byte array. */ public static final byte[] EMPTY_BYTE_ARRAY = new byte[0]; /** * An empty immutable Byte array. */ public static final Byte[] EMPTY_BYTE_OBJECT_ARRAY = new Byte[0]; /** * An empty immutable double array. */ public static final double[] EMPTY_DOUBLE_ARRAY = new double[0]; /** * An empty immutable Double array. */ public static final Double[] EMPTY_DOUBLE_OBJECT_ARRAY = new Double[0]; /** * An empty immutable float array. */ public static final float[] EMPTY_FLOAT_ARRAY = new float[0]; /** * An empty immutable Float array. */ public static final Float[] EMPTY_FLOAT_OBJECT_ARRAY = new Float[0]; /** * An empty immutable boolean array. */ public static final boolean[] EMPTY_BOOLEAN_ARRAY = new boolean[0]; /** * An empty immutable Boolean array. */ public static final Boolean[] EMPTY_BOOLEAN_OBJECT_ARRAY = new Boolean[0]; /** * An empty immutable char array. */ public static final char[] EMPTY_CHAR_ARRAY = new char[0]; /** * An empty immutable Character array. */ public static final Character[] EMPTY_CHARACTER_OBJECT_ARRAY = new Character[0]; /** *

ArrayUtils instances should NOT be constructed in standard programming. * Instead, the class should be used as ArrayUtils.clone(new int[] {2}).

* *

This constructor is public to permit tools that require a JavaBean instance * to operate.

*/ public ArrayUtils() { } // Basic methods handling multi-dimensional arrays //----------------------------------------------------------------------- /** *

Outputs an array as a String, treating null as an empty array.

* *

Multi-dimensional arrays are handled correctly, including * multi-dimensional primitive arrays.

* *

The format is that of Java source code, for example {a,b}.

* * @param array the array to get a toString for, may be null * @return a String representation of the array, '{}' if null array input */ public static String toString(final Object array) { return toString(array, "{}"); } /** *

Outputs an array as a String handling nulls.

* *

Multi-dimensional arrays are handled correctly, including * multi-dimensional primitive arrays.

* *

The format is that of Java source code, for example {a,b}.

* * @param array the array to get a toString for, may be null * @param stringIfNull the String to return if the array is null * @return a String representation of the array */ public static String toString(final Object array, final String stringIfNull) { if (array == null) { return stringIfNull; } return new ToStringBuilder(array, ToStringStyle.SIMPLE_STYLE).append(array).toString(); } /** *

Get a hashCode for an array handling multi-dimensional arrays correctly.

* *

Multi-dimensional primitive arrays are also handled correctly by this method.

* * @param array the array to get a hashCode for, may be null * @return a hashCode for the array, zero if null array input */ public static int hashCode(final Object array) { return new HashCodeBuilder().append(array).toHashCode(); } /** *

Compares two arrays, using equals(), handling multi-dimensional arrays * correctly.

* *

Multi-dimensional primitive arrays are also handled correctly by this method.

* * @param array1 the array to get a hashCode for, may be null * @param array2 the array to get a hashCode for, may be null * @return true if the arrays are equal */ public static boolean isEquals(final Object array1, final Object array2) { return new EqualsBuilder().append(array1, array2).isEquals(); } // To map //----------------------------------------------------------------------- /** *

Converts the given array into a {@link java.util.Map}. Each element of the array * must be either a {@link java.util.Map.Entry} or an Array, containing at least two * elements, where the first element is used as key and the second as * value.

* *

This method can be used to initialize:

*
     * // Create a Map mapping colors.
     * Map colorMap = MapUtils.toMap(new String[][] {{
     *     {"RED", "#FF0000"},
     *     {"GREEN", "#00FF00"},
     *     {"BLUE", "#0000FF"}});
     * 
* *

This method returns null if null array input.

* * @param array an array whose elements are either a {@link java.util.Map.Entry} or * an Array containing at least two elements, may be null * @return a Map that was created from the array * @throws IllegalArgumentException if one element of this Array is * itself an Array containing less then two elements * @throws IllegalArgumentException if the array contains elements other * than {@link java.util.Map.Entry} and an Array */ public static Map toMap(final Object[] array) { if (array == null) { return null; } final Map map = new HashMap((int) (array.length * 1.5)); for (int i = 0; i < array.length; i++) { Object object = array[i]; if (object instanceof Map.Entry) { Map.Entry entry = (Map.Entry) object; map.put(entry.getKey(), entry.getValue()); } else if (object instanceof Object[]) { Object[] entry = (Object[]) object; if (entry.length < 2) { throw new IllegalArgumentException("Array element " + i + ", '" + object + "', has a length less than 2"); } map.put(entry[0], entry[1]); } else { throw new IllegalArgumentException("Array element " + i + ", '" + object + "', is neither of type Map.Entry nor an Array"); } } return map; } // Clone //----------------------------------------------------------------------- /** *

Shallow clones an array returning a typecast result and handling * null.

* *

The objecs in the array are not cloned, thus there is no special * handling for multi-dimensional arrays.

* *

This method returns null if null array input.

* * @param array the array to shallow clone, may be null * @return the cloned array, null if null input */ public static Object[] clone(final Object[] array) { if (array == null) { return null; } return (Object[]) array.clone(); } /** *

Clones an array returning a typecast result and handling * null.

* *

This method returns null if null array input.

* * @param array the array to clone, may be null * @return the cloned array, null if null input */ public static long[] clone(final long[] array) { if (array == null) { return null; } return (long[]) array.clone(); } /** *

Clones an array returning a typecast result and handling * null.

* *

This method returns null if null array input.

* * @param array the array to clone, may be null * @return the cloned array, null if null input */ public static int[] clone(int[] array) { if (array == null) { return null; } return (int[]) array.clone(); } /** *

Clones an array returning a typecast result and handling * null.

* *

This method returns null if null array input.

* * @param array the array to clone, may be null * @return the cloned array, null if null input */ public static short[] clone(final short[] array) { if (array == null) { return null; } return (short[]) array.clone(); } /** *

Clones an array returning a typecast result and handling * null.

* *

This method returns null if null array input.

* * @param array the array to clone, may be null * @return the cloned array, null if null input */ public static char[] clone(final char[] array) { if (array == null) { return null; } return (char[]) array.clone(); } /** *

Clones an array returning a typecast result and handling * null.

* *

This method returns null if null array input.

* * @param array the array to clone, may be null * @return the cloned array, null if null input */ public static byte[] clone(final byte[] array) { if (array == null) { return null; } return (byte[]) array.clone(); } /** *

Clones an array returning a typecast result and handling * null.

* *

This method returns null if null array input.

* * @param array the array to clone, may be null * @return the cloned array, null if null input */ public static double[] clone(final double[] array) { if (array == null) { return null; } return (double[]) array.clone(); } /** *

Clones an array returning a typecast result and handling * null.

* *

This method returns null if null array input.

* * @param array the array to clone, may be null * @return the cloned array, null if null input */ public static float[] clone(final float[] array) { if (array == null) { return null; } return (float[]) array.clone(); } /** *

Clones an array returning a typecast result and handling * null.

* *

This method returns null if null array input.

* * @param array the array to clone, may be null * @return the cloned array, null if null input */ public static boolean[] clone(final boolean[] array) { if (array == null) { return null; } return (boolean[]) array.clone(); } // Is same length //----------------------------------------------------------------------- /** *

Checks whether two arrays are the same length, treating * null arrays as length 0. * *

Any multi-dimensional aspects of the arrays are ignored.

* * @param array1 the first array, may be null * @param array2 the second array, may be null * @return true if length of arrays matches, treating * null as an empty array */ public static boolean isSameLength(final Object[] array1, final Object[] array2) { if ((array1 == null && array2 != null && array2.length > 0) || (array2 == null && array1 != null && array1.length > 0) || (array1 != null && array2 != null && array1.length != array2.length)) { return false; } return true; } /** *

Checks whether two arrays are the same length, treating * null arrays as length 0.

* * @param array1 the first array, may be null * @param array2 the second array, may be null * @return true if length of arrays matches, treating * null as an empty array */ public static boolean isSameLength(final long[] array1, final long[] array2) { if ((array1 == null && array2 != null && array2.length > 0) || (array2 == null && array1 != null && array1.length > 0) || (array1 != null && array2 != null && array1.length != array2.length)) { return false; } return true; } /** *

Checks whether two arrays are the same length, treating * null arrays as length 0.

* * @param array1 the first array, may be null * @param array2 the second array, may be null * @return true if length of arrays matches, treating * null as an empty array */ public static boolean isSameLength(final int[] array1, final int[] array2) { if ((array1 == null && array2 != null && array2.length > 0) || (array2 == null && array1 != null && array1.length > 0) || (array1 != null && array2 != null && array1.length != array2.length)) { return false; } return true; } /** *

Checks whether two arrays are the same length, treating * null arrays as length 0.

* * @param array1 the first array, may be null * @param array2 the second array, may be null * @return true if length of arrays matches, treating * null as an empty array */ public static boolean isSameLength(final short[] array1, final short[] array2) { if ((array1 == null && array2 != null && array2.length > 0) || (array2 == null && array1 != null && array1.length > 0) || (array1 != null && array2 != null && array1.length != array2.length)) { return false; } return true; } /** *

Checks whether two arrays are the same length, treating * null arrays as length 0.

* * @param array1 the first array, may be null * @param array2 the second array, may be null * @return true if length of arrays matches, treating * null as an empty array */ public static boolean isSameLength(final char[] array1, final char[] array2) { if ((array1 == null && array2 != null && array2.length > 0) || (array2 == null && array1 != null && array1.length > 0) || (array1 != null && array2 != null && array1.length != array2.length)) { return false; } return true; } /** *

Checks whether two arrays are the same length, treating * null arrays as length 0.

* * @param array1 the first array, may be null * @param array2 the second array, may be null * @return true if length of arrays matches, treating * null as an empty array */ public static boolean isSameLength(final byte[] array1, final byte[] array2) { if ((array1 == null && array2 != null && array2.length > 0) || (array2 == null && array1 != null && array1.length > 0) || (array1 != null && array2 != null && array1.length != array2.length)) { return false; } return true; } /** *

Checks whether two arrays are the same length, treating * null arrays as length 0.

* * @param array1 the first array, may be null * @param array2 the second array, may be null * @return true if length of arrays matches, treating * null as an empty array */ public static boolean isSameLength(final double[] array1, final double[] array2) { if ((array1 == null && array2 != null && array2.length > 0) || (array2 == null && array1 != null && array1.length > 0) || (array1 != null && array2 != null && array1.length != array2.length)) { return false; } return true; } /** *

Checks whether two arrays are the same length, treating * null arrays as length 0.

* * @param array1 the first array, may be null * @param array2 the second array, may be null * @return true if length of arrays matches, treating * null as an empty array */ public static boolean isSameLength(final float[] array1, final float[] array2) { if ((array1 == null && array2 != null && array2.length > 0) || (array2 == null && array1 != null && array1.length > 0) || (array1 != null && array2 != null && array1.length != array2.length)) { return false; } return true; } /** *

Checks whether two arrays are the same length, treating * null arrays as length 0.

* * @param array1 the first array, may be null * @param array2 the second array, may be null * @return true if length of arrays matches, treating * null as an empty array */ public static boolean isSameLength(final boolean[] array1, final boolean[] array2) { if ((array1 == null && array2 != null && array2.length > 0) || (array2 == null && array1 != null && array1.length > 0) || (array1 != null && array2 != null && array1.length != array2.length)) { return false; } return true; } /** *

Checks whether two arrays are the same type taking into account * multi-dimensional arrays.

* * @param array1 the first array, must not be null * @param array2 the second array, must not be null * @return true if type of arrays matches * @throws IllegalArgumentException if either array is null */ public static boolean isSameType(final Object array1, final Object array2) { if (array1 == null || array2 == null) { throw new IllegalArgumentException("The Array must not be null"); } return array1.getClass().getName().equals(array2.getClass().getName()); } // Reverse //----------------------------------------------------------------------- /** *

Reverses the order of the given array.

* *

There is no special handling for multi-dimensional arrays.

* *

This method does nothing if null array input.

* * @param array the array to reverse, may be null */ public static void reverse(final Object[] array) { if (array == null) { return; } int i = 0; int j = array.length - 1; Object tmp; while (j > i) { tmp = array[j]; array[j] = array[i]; array[i] = tmp; j--; i++; } } /** *

Reverses the order of the given array.

* *

This method does nothing if null array input.

* * @param array the array to reverse, may be null */ public static void reverse(final long[] array) { if (array == null) { return; } int i = 0; int j = array.length - 1; long tmp; while (j > i) { tmp = array[j]; array[j] = array[i]; array[i] = tmp; j--; i++; } } /** *

Reverses the order of the given array.

* *

This method does nothing if null array input.

* * @param array the array to reverse, may be null */ public static void reverse(final int[] array) { if (array == null) { return; } int i = 0; int j = array.length - 1; int tmp; while (j > i) { tmp = array[j]; array[j] = array[i]; array[i] = tmp; j--; i++; } } /** *

Reverses the order of the given array.

* *

This method does nothing if null array input.

* * @param array the array to reverse, may be null */ public static void reverse(final short[] array) { if (array == null) { return; } int i = 0; int j = array.length - 1; short tmp; while (j > i) { tmp = array[j]; array[j] = array[i]; array[i] = tmp; j--; i++; } } /** *

Reverses the order of the given array.

* *

This method does nothing if null array input.

* * @param array the array to reverse, may be null */ public static void reverse(final char[] array) { if (array == null) { return; } int i = 0; int j = array.length - 1; char tmp; while (j > i) { tmp = array[j]; array[j] = array[i]; array[i] = tmp; j--; i++; } } /** *

Reverses the order of the given array.

* *

This method does nothing if null array input.

* * @param array the array to reverse, may be null */ public static void reverse(final byte[] array) { if (array == null) { return; } int i = 0; int j = array.length - 1; byte tmp; while (j > i) { tmp = array[j]; array[j] = array[i]; array[i] = tmp; j--; i++; } } /** *

Reverses the order of the given array.

* *

This method does nothing if null array input.

* * @param array the array to reverse, may be null */ public static void reverse(final double[] array) { if (array == null) { return; } int i = 0; int j = array.length - 1; double tmp; while (j > i) { tmp = array[j]; array[j] = array[i]; array[i] = tmp; j--; i++; } } /** *

Reverses the order of the given array.

* *

This method does nothing if null array input.

* * @param array the array to reverse, may be null */ public static void reverse(final float[] array) { if (array == null) { return; } int i = 0; int j = array.length - 1; float tmp; while (j > i) { tmp = array[j]; array[j] = array[i]; array[i] = tmp; j--; i++; } } /** *

Reverses the order of the given array.

* *

This method does nothing if null array input.

* * @param array the array to reverse, may be null */ public static void reverse(final boolean[] array) { if (array == null) { return; } int i = 0; int j = array.length - 1; boolean tmp; while (j > i) { tmp = array[j]; array[j] = array[i]; array[i] = tmp; j--; i++; } } // IndexOf search // ---------------------------------------------------------------------- // Object IndexOf //----------------------------------------------------------------------- /** *

Find the index of the given object in the array.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param objectToFind the object to find, may be null * @return the index of the object within the array, * -1 if not found or null array input */ public static int indexOf(final Object[] array, final Object objectToFind) { return indexOf(array, objectToFind, 0); } /** *

Find the index of the given object in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex is treated as zero. A startIndex larger than the array * length will return -1.

* * @param array the array to search through for the object, may be null * @param objectToFind the object to find, may be null * @param startIndex the index to start searching at * @return the index of the object within the array starting at the index, * -1 if not found or null array input */ public static int indexOf(final Object[] array, final Object objectToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { startIndex = 0; } if (objectToFind == null) { for (int i = startIndex; i < array.length; i++) { if (array[i] == null) { return i; } } } else { for (int i = startIndex; i < array.length; i++) { if (objectToFind.equals(array[i])) { return i; } } } return -1; } /** *

Find the last index of the given object within the array.

* *

This method returns -1 if null array input.

* * @param array the array to travers backwords looking for the object, may be null * @param objectToFind the object to find, may be null * @return the last index of the object within the array, * -1 if not found or null array input */ public static int lastIndexOf(final Object[] array, final Object objectToFind) { return lastIndexOf(array, objectToFind, Integer.MAX_VALUE); } /** *

Find the last index of the given object in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex will return -1. A startIndex larger than * the array length will search from the end of the array.

* * @param array the array to traverse for looking for the object, may be null * @param objectToFind the object to find, may be null * @param startIndex the start index to travers backwards from * @return the last index of the object within the array, * -1 if not found or null array input */ public static int lastIndexOf(final Object[] array, final Object objectToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { return -1; } else if (startIndex >= array.length) { startIndex = array.length - 1; } if (objectToFind == null) { for (int i = startIndex; i >= 0; i--) { if (array[i] == null) { return i; } } } else { for (int i = startIndex; i >= 0; i--) { if (objectToFind.equals(array[i])) { return i; } } } return -1; } /** *

Checks if the object is in the given array.

* *

The method returns false if a null array is passed in.

* * @param array the array to search through * @param objectToFind the object to find * @return true if the array contains the object */ public static boolean contains(final Object[] array, final Object objectToFind) { return (indexOf(array, objectToFind) != -1); } // long IndexOf //----------------------------------------------------------------------- /** *

Find the index of the given value in the array.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final long[] array, final long valueToFind) { return indexOf(array, valueToFind, 0); } /** *

Find the index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex is treated as zero. A startIndex larger than the array * length will return -1.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param startIndex the index to start searching at * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final long[] array, final long valueToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { startIndex = 0; } for (int i = startIndex; i < array.length; i++) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Find the last index of the given value within the array.

* *

This method returns -1 if null array input.

* * @param array the array to travers backwords looking for the object, may be null * @param valueToFind the object to find * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final long[] array, final long valueToFind) { return lastIndexOf(array, valueToFind, Integer.MAX_VALUE); } /** *

Find the last index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex will return -1. A startIndex larger than the array * length will search from the end of the array.

* * @param array the array to traverse for looking for the object, may be null * @param valueToFind the value to find * @param startIndex the start index to travers backwards from * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final long[] array, final long valueToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { return -1; } else if (startIndex >= array.length) { startIndex = array.length - 1; } for (int i = startIndex; i >= 0; i--) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Checks if the value is in the given array.

* *

The method returns false if a null array is passed in.

* * @param array the array to search through * @param valueToFind the value to find * @return true if the array contains the object */ public static boolean contains(final long[] array, final long valueToFind) { return (indexOf(array, valueToFind) != -1); } // int IndexOf //----------------------------------------------------------------------- /** *

Find the index of the given value in the array.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final int[] array, final int valueToFind) { return indexOf(array, valueToFind, 0); } /** *

Find the index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex is treated as zero. A startIndex larger than the array * length will return -1.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param startIndex the index to start searching at * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final int[] array, final int valueToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { startIndex = 0; } for (int i = startIndex; i < array.length; i++) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Find the last index of the given value within the array.

* *

This method returns -1 if null array input.

* * @param array the array to travers backwords looking for the object, may be null * @param valueToFind the object to find * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final int[] array, final int valueToFind) { return lastIndexOf(array, valueToFind, Integer.MAX_VALUE); } /** *

Find the last index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex will return -1. A startIndex larger than the array * length will search from the end of the array.

* * @param array the array to traverse for looking for the object, may be null * @param valueToFind the value to find * @param startIndex the start index to travers backwards from * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final int[] array, final int valueToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { return -1; } else if (startIndex >= array.length) { startIndex = array.length - 1; } for (int i = startIndex; i >= 0; i--) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Checks if the value is in the given array.

* *

The method returns false if a null array is passed in.

* * @param array the array to search through * @param valueToFind the value to find * @return true if the array contains the object */ public static boolean contains(final int[] array, final int valueToFind) { return (indexOf(array, valueToFind) != -1); } // short IndexOf //----------------------------------------------------------------------- /** *

Find the index of the given value in the array.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final short[] array, final short valueToFind) { return indexOf(array, valueToFind, 0); } /** *

Find the index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex is treated as zero. A startIndex larger than the array * length will return -1.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param startIndex the index to start searching at * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final short[] array, final short valueToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { startIndex = 0; } for (int i = startIndex; i < array.length; i++) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Find the last index of the given value within the array.

* *

This method returns -1 if null array input.

* * @param array the array to travers backwords looking for the object, may be null * @param valueToFind the object to find * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final short[] array, final short valueToFind) { return lastIndexOf(array, valueToFind, Integer.MAX_VALUE); } /** *

Find the last index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex will return -1. A startIndex larger than the array * length will search from the end of the array.

* * @param array the array to traverse for looking for the object, may be null * @param valueToFind the value to find * @param startIndex the start index to travers backwards from * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final short[] array, final short valueToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { return -1; } else if (startIndex >= array.length) { startIndex = array.length - 1; } for (int i = startIndex; i >= 0; i--) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Checks if the value is in the given array.

* *

The method returns false if a null array is passed in.

* * @param array the array to search through * @param valueToFind the value to find * @return true if the array contains the object */ public static boolean contains(final short[] array, final short valueToFind) { return (indexOf(array, valueToFind) != -1); } // byte IndexOf //----------------------------------------------------------------------- /** *

Find the index of the given value in the array.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final byte[] array, final byte valueToFind) { return indexOf(array, valueToFind, 0); } /** *

Find the index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex is treated as zero. A startIndex larger than the array * length will return -1.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param startIndex the index to start searching at * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final byte[] array, final byte valueToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { startIndex = 0; } for (int i = startIndex; i < array.length; i++) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Find the last index of the given value within the array.

* *

This method returns -1 if null array input.

* * @param array the array to travers backwords looking for the object, may be null * @param valueToFind the object to find * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final byte[] array, final byte valueToFind) { return lastIndexOf(array, valueToFind, Integer.MAX_VALUE); } /** *

Find the last index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex will return -1. A startIndex larger than the array * length will search from the end of the array.

* * @param array the array to traverse for looking for the object, may be null * @param valueToFind the value to find * @param startIndex the start index to travers backwards from * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final byte[] array, final byte valueToFind, int startIndex) { if (array == null) { return -1; } if (startIndex < 0) { return -1; } else if (startIndex >= array.length) { startIndex = array.length - 1; } for (int i = startIndex; i >= 0; i--) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Checks if the value is in the given array.

* *

The method returns false if a null array is passed in.

* * @param array the array to search through * @param valueToFind the value to find * @return true if the array contains the object */ public static boolean contains(final byte[] array, final byte valueToFind) { return (indexOf(array, valueToFind) != -1); } // double IndexOf //----------------------------------------------------------------------- /** *

Find the index of the given value in the array.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final double[] array, final double valueToFind) { return indexOf(array, valueToFind, 0); } /** *

Find the index of the given value within a given tolerance in the array. * This method will return the index of the first value which falls between the region * defined by valueToFind - tolerance and valueToFind + tolerance.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param tolerance tolerance of the search * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final double[] array, final double valueToFind, final double tolerance) { return indexOf(array, valueToFind, 0, tolerance); } /** *

Find the index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex is treated as zero. A startIndex larger than the array * length will return -1.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param startIndex the index to start searching at * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final double[] array, final double valueToFind, int startIndex) { if (array == null || array.length == 0) { return -1; } if (startIndex < 0) { startIndex = 0; } for (int i = startIndex; i < array.length; i++) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Find the index of the given value in the array starting at the given index. * This method will return the index of the first value which falls between the region * defined by valueToFind - tolerance and valueToFind + tolerance.

* *

This method returns -1 if null array input.

* *

A negative startIndex is treated as zero. A startIndex larger than the array * length will return -1.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param startIndex the index to start searching at * @param tolerance tolerance of the search * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final double[] array, final double valueToFind, int startIndex, double tolerance) { if (array == null || array.length == 0) { return -1; } if (startIndex < 0) { startIndex = 0; } double min = valueToFind - tolerance; double max = valueToFind + tolerance; for (int i = startIndex; i < array.length; i++) { if (array[i] >= min && array[i] <= max) { return i; } } return -1; } /** *

Find the last index of the given value within the array.

* *

This method returns -1 if null array input.

* * @param array the array to travers backwords looking for the object, may be null * @param valueToFind the object to find * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final double[] array, final double valueToFind) { return lastIndexOf(array, valueToFind, Integer.MAX_VALUE); } /** *

Find the last index of the given value within a given tolerance in the array. * This method will return the index of the last value which falls between the region * defined by valueToFind - tolerance and valueToFind + tolerance.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param tolerance tolerance of the search * @return the index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final double[] array, final double valueToFind, final double tolerance) { return lastIndexOf(array, valueToFind, Integer.MAX_VALUE, tolerance); } /** *

Find the last index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex will return -1. A startIndex larger than the array * length will search from the end of the array.

* * @param array the array to traverse for looking for the object, may be null * @param valueToFind the value to find * @param startIndex the start index to travers backwards from * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final double[] array, final double valueToFind, int startIndex) { if (array == null || array.length == 0) { return -1; } if (startIndex < 0) { return -1; } else if (startIndex >= array.length) { startIndex = array.length - 1; } for (int i = startIndex; i >= 0; i--) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Find the last index of the given value in the array starting at the given index. * This method will return the index of the last value which falls between the region * defined by valueToFind - tolerance and valueToFind + tolerance.

* *

This method returns -1 if null array input.

* *

A negative startIndex will return -1. A startIndex larger than the array * length will search from the end of the array.

* * @param array the array to traverse for looking for the object, may be null * @param valueToFind the value to find * @param startIndex the start index to travers backwards from * @param tolerance search for value within plus/minus this amount * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final double[] array, final double valueToFind, int startIndex, double tolerance) { if (array == null || array.length == 0) { return -1; } if (startIndex < 0) { return -1; } else if (startIndex >= array.length) { startIndex = array.length - 1; } double min = valueToFind - tolerance; double max = valueToFind + tolerance; for (int i = startIndex; i >= 0; i--) { if (array[i] >= min && array[i] <= max) { return i; } } return -1; } /** *

Checks if the value is in the given array.

* *

The method returns false if a null array is passed in.

* * @param array the array to search through * @param valueToFind the value to find * @return true if the array contains the object */ public static boolean contains(final double[] array, final double valueToFind) { return (indexOf(array, valueToFind) != -1); } /** *

Checks if a value falling within the given tolerance is in the * given array. If the array contains a value within the inclusive range * defined by (value - tolerance) to (value + tolerance).

* *

The method returns false if a null array * is passed in.

* * @param array the array to search * @param valueToFind the value to find * @param tolerance the array contains the tolerance of the search * @return true if value falling within tolerance is in array */ public static boolean contains(final double[] array, final double valueToFind, final double tolerance) { return (indexOf(array, valueToFind, 0, tolerance) != -1); } // float IndexOf //----------------------------------------------------------------------- /** *

Find the index of the given value in the array.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final float[] array, final float valueToFind) { return indexOf(array, valueToFind, 0); } /** *

Find the index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex is treated as zero. A startIndex larger than the array * length will return -1.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param startIndex the index to start searching at * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final float[] array, final float valueToFind, int startIndex) { if (array == null || array.length == 0) { return -1; } if (startIndex < 0) { startIndex = 0; } for (int i = startIndex; i < array.length; i++) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Find the last index of the given value within the array.

* *

This method returns -1 if null array input.

* * @param array the array to travers backwords looking for the object, may be null * @param valueToFind the object to find * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final float[] array, final float valueToFind) { return lastIndexOf(array, valueToFind, Integer.MAX_VALUE); } /** *

Find the last index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex will return -1. A startIndex larger than the array * length will search from the end of the array.

* * @param array the array to traverse for looking for the object, may be null * @param valueToFind the value to find * @param startIndex the start index to travers backwards from * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final float[] array, final float valueToFind, int startIndex) { if (array == null || array.length == 0) { return -1; } if (startIndex < 0) { return -1; } else if (startIndex >= array.length) { startIndex = array.length - 1; } for (int i = startIndex; i >= 0; i--) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Checks if the value is in the given array.

* *

The method returns false if a null array is passed in.

* * @param array the array to search through * @param valueToFind the value to find * @return true if the array contains the object */ public static boolean contains(final float[] array, final float valueToFind) { return (indexOf(array, valueToFind) != -1); } // boolean IndexOf //----------------------------------------------------------------------- /** *

Find the index of the given value in the array.

* *

This method returns -1 if null array input.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final boolean[] array, final boolean valueToFind) { return indexOf(array, valueToFind, 0); } /** *

Find the index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex is treated as zero. A startIndex larger than the array * length will return -1.

* * @param array the array to search through for the object, may be null * @param valueToFind the value to find * @param startIndex the index to start searching at * @return the index of the value within the array, * -1 if not found or null array input */ public static int indexOf(final boolean[] array, final boolean valueToFind, int startIndex) { if (array == null || array.length == 0) { return -1; } if (startIndex < 0) { startIndex = 0; } for (int i = startIndex; i < array.length; i++) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Find the last index of the given value within the array.

* *

This method returns -1 if null array input.

* * @param array the array to travers backwords looking for the object, may be null * @param valueToFind the object to find * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final boolean[] array, final boolean valueToFind) { return lastIndexOf(array, valueToFind, Integer.MAX_VALUE); } /** *

Find the last index of the given value in the array starting at the given index.

* *

This method returns -1 if null array input.

* *

A negative startIndex will return -1. A startIndex larger than the array * length will search from the end of the array.

* * @param array the array to traverse for looking for the object, may be null * @param valueToFind the value to find * @param startIndex the start index to travers backwards from * @return the last index of the value within the array, * -1 if not found or null array input */ public static int lastIndexOf(final boolean[] array, final boolean valueToFind, int startIndex) { if (array == null || array.length == 0) { return -1; } if (startIndex < 0) { return -1; } else if (startIndex >= array.length) { startIndex = array.length - 1; } for (int i = startIndex; i >= 0; i--) { if (valueToFind == array[i]) { return i; } } return -1; } /** *

Checks if the value is in the given array.

* *

The method returns false if a null array is passed in.

* * @param array the array to search through * @param valueToFind the value to find * @return true if the array contains the object */ public static boolean contains(final boolean[] array, final boolean valueToFind) { return (indexOf(array, valueToFind) != -1); } // Primitive/Object array converters // ---------------------------------------------------------------------- // Long array converters // ---------------------------------------------------------------------- /** *

Converts an array of object Longs to primitives.

* *

This method returns null if null array input.

* * @param array a Long array, may be null * @return a long array, null if null array input * @throws NullPointerException if array content is null */ public static long[] toPrimitive(final Long[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_LONG_ARRAY; } final long[] result = new long[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i].longValue(); } return result; } /** *

Converts an array of object Long to primitives handling null.

* *

This method returns null if null array input.

* * @param array a Long array, may be null * @param valueForNull the value to insert if null found * @return a long array, null if null array input */ public static long[] toPrimitive(final Long[] array, final long valueForNull) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_LONG_ARRAY; } final long[] result = new long[array.length]; for (int i = 0; i < array.length; i++) { Long b = array[i]; result[i] = (b == null ? valueForNull : b.longValue()); } return result; } /** *

Converts an array of primitive longs to objects.

* *

This method returns null if null array input.

* * @param array a long array * @return a Long array, null if null array input */ public static Long[] toObject(final long[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_LONG_OBJECT_ARRAY; } final Long[] result = new Long[array.length]; for (int i = 0; i < array.length; i++) { result[i] = new Long(array[i]); } return result; } // Int array converters // ---------------------------------------------------------------------- /** *

Converts an array of object Integers to primitives.

* *

This method returns null if null array input.

* * @param array a Integer array, may be null * @return an int array, null if null array input * @throws NullPointerException if array content is null */ public static int[] toPrimitive(final Integer[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_INT_ARRAY; } final int[] result = new int[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i].intValue(); } return result; } /** *

Converts an array of object Integer to primitives handling null.

* *

This method returns null if null array input.

* * @param array a Integer array, may be null * @param valueForNull the value to insert if null found * @return an int array, null if null array input */ public static int[] toPrimitive(final Integer[] array, final int valueForNull) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_INT_ARRAY; } final int[] result = new int[array.length]; for (int i = 0; i < array.length; i++) { Integer b = array[i]; result[i] = (b == null ? valueForNull : b.intValue()); } return result; } /** *

Converts an array of primitive ints to objects.

* *

This method returns null if null array input.

* * @param array an int array * @return an Integer array, null if null array input */ public static Integer[] toObject(final int[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_INTEGER_OBJECT_ARRAY; } final Integer[] result = new Integer[array.length]; for (int i = 0; i < array.length; i++) { result[i] = new Integer(array[i]); } return result; } // Short array converters // ---------------------------------------------------------------------- /** *

Converts an array of object Shorts to primitives.

* *

This method returns null if null array input.

* * @param array a Short array, may be null * @return a byte array, null if null array input * @throws NullPointerException if array content is null */ public static short[] toPrimitive(final Short[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_SHORT_ARRAY; } final short[] result = new short[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i].shortValue(); } return result; } /** *

Converts an array of object Short to primitives handling null.

* *

This method returns null if null array input.

* * @param array a Short array, may be null * @param valueForNull the value to insert if null found * @return a byte array, null if null array input */ public static short[] toPrimitive(final Short[] array, final short valueForNull) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_SHORT_ARRAY; } final short[] result = new short[array.length]; for (int i = 0; i < array.length; i++) { Short b = array[i]; result[i] = (b == null ? valueForNull : b.shortValue()); } return result; } /** *

Converts an array of primitive shorts to objects.

* *

This method returns null if null array input.

* * @param array a short array * @return a Short array, null if null array input */ public static Short[] toObject(final short[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_SHORT_OBJECT_ARRAY; } final Short[] result = new Short[array.length]; for (int i = 0; i < array.length; i++) { result[i] = new Short(array[i]); } return result; } // Byte array converters // ---------------------------------------------------------------------- /** *

Converts an array of object Bytes to primitives.

* *

This method returns null if null array input.

* * @param array a Byte array, may be null * @return a byte array, null if null array input * @throws NullPointerException if array content is null */ public static byte[] toPrimitive(final Byte[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_BYTE_ARRAY; } final byte[] result = new byte[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i].byteValue(); } return result; } /** *

Converts an array of object Bytes to primitives handling null.

* *

This method returns null if null array input.

* * @param array a Byte array, may be null * @param valueForNull the value to insert if null found * @return a byte array, null if null array input */ public static byte[] toPrimitive(final Byte[] array, final byte valueForNull) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_BYTE_ARRAY; } final byte[] result = new byte[array.length]; for (int i = 0; i < array.length; i++) { Byte b = array[i]; result[i] = (b == null ? valueForNull : b.byteValue()); } return result; } /** *

Converts an array of primitive bytes to objects.

* *

This method returns null if null array input.

* * @param array a byte array * @return a Byte array, null if null array input */ public static Byte[] toObject(final byte[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_BYTE_OBJECT_ARRAY; } final Byte[] result = new Byte[array.length]; for (int i = 0; i < array.length; i++) { result[i] = new Byte(array[i]); } return result; } // Double array converters // ---------------------------------------------------------------------- /** *

Converts an array of object Doubles to primitives.

* *

This method returns null if null array input.

* * @param array a Double array, may be null * @return a double array, null if null array input * @throws NullPointerException if array content is null */ public static double[] toPrimitive(final Double[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_DOUBLE_ARRAY; } final double[] result = new double[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i].doubleValue(); } return result; } /** *

Converts an array of object Doubles to primitives handling null.

* *

This method returns null if null array input.

* * @param array a Double array, may be null * @param valueForNull the value to insert if null found * @return a double array, null if null array input */ public static double[] toPrimitive(final Double[] array, final double valueForNull) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_DOUBLE_ARRAY; } final double[] result = new double[array.length]; for (int i = 0; i < array.length; i++) { Double b = array[i]; result[i] = (b == null ? valueForNull : b.doubleValue()); } return result; } /** *

Converts an array of primitive doubles to objects.

* *

This method returns null if null array input.

* * @param array a double array * @return a Double array, null if null array input */ public static Double[] toObject(final double[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_DOUBLE_OBJECT_ARRAY; } final Double[] result = new Double[array.length]; for (int i = 0; i < array.length; i++) { result[i] = new Double(array[i]); } return result; } // Float array converters // ---------------------------------------------------------------------- /** *

Converts an array of object Floats to primitives.

* *

This method returns null if null array input.

* * @param array a Float array, may be null * @return a float array, null if null array input * @throws NullPointerException if array content is null */ public static float[] toPrimitive(final Float[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_FLOAT_ARRAY; } final float[] result = new float[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i].floatValue(); } return result; } /** *

Converts an array of object Floats to primitives handling null.

* *

This method returns null if null array input.

* * @param array a Float array, may be null * @param valueForNull the value to insert if null found * @return a float array, null if null array input */ public static float[] toPrimitive(final Float[] array, final float valueForNull) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_FLOAT_ARRAY; } final float[] result = new float[array.length]; for (int i = 0; i < array.length; i++) { Float b = array[i]; result[i] = (b == null ? valueForNull : b.floatValue()); } return result; } /** *

Converts an array of primitive floats to objects.

* *

This method returns null if null array input.

* * @param array a float array * @return a Float array, null if null array input */ public static Float[] toObject(final float[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_FLOAT_OBJECT_ARRAY; } final Float[] result = new Float[array.length]; for (int i = 0; i < array.length; i++) { result[i] = new Float(array[i]); } return result; } // Boolean array converters // ---------------------------------------------------------------------- /** *

Converts an array of object Booleans to primitives.

* *

This method returns null if null array input.

* * @param array a Boolean array, may be null * @return a boolean array, null if null array input * @throws NullPointerException if array content is null */ public static boolean[] toPrimitive(final Boolean[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_BOOLEAN_ARRAY; } final boolean[] result = new boolean[array.length]; for (int i = 0; i < array.length; i++) { result[i] = array[i].booleanValue(); } return result; } /** *

Converts an array of object Booleans to primitives handling null.

* *

This method returns null if null array input.

* * @param array a Boolean array, may be null * @param valueForNull the value to insert if null found * @return a boolean array, null if null array input */ public static boolean[] toPrimitive(final Boolean[] array, final boolean valueForNull) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_BOOLEAN_ARRAY; } final boolean[] result = new boolean[array.length]; for (int i = 0; i < array.length; i++) { Boolean b = array[i]; result[i] = (b == null ? valueForNull : b.booleanValue()); } return result; } /** *

Converts an array of primitive booleans to objects.

* *

This method returns null if null array input.

* * @param array a boolean array * @return a Boolean array, null if null array input */ public static Boolean[] toObject(final boolean[] array) { if (array == null) { return null; } else if (array.length == 0) { return EMPTY_BOOLEAN_OBJECT_ARRAY; } final Boolean[] result = new Boolean[array.length]; for (int i = 0; i < array.length; i++) { result[i] = (array[i] ? Boolean.TRUE : Boolean.FALSE); } return result; } }