org.jfree.util
Class ArrayUtils

java.lang.Object
  extended by org.jfree.util.ArrayUtils

Deprecated. Use ArrayUtilities.

public abstract class ArrayUtils
extends java.lang.Object

Utility methods for working with arrays.


Constructor Summary
ArrayUtils()
          Deprecated.  
 
Method Summary
static float[][] clone(float[][] array)
          Deprecated. Clones a two dimensional array of floats.
static boolean equal(float[][] array1, float[][] array2)
          Deprecated. Tests two float arrays for equality.
static boolean hasDuplicateItems(java.lang.Object[] array)
          Deprecated. Returns true if any two items in the array are equal to one another.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ArrayUtils

public ArrayUtils()
Deprecated. 
Method Detail

clone

public static float[][] clone(float[][] array)
Deprecated. 
Clones a two dimensional array of floats.

Parameters:
array - the array.
Returns:
A clone of the array.

equal

public static boolean equal(float[][] array1,
                            float[][] array2)
Deprecated. 
Tests two float arrays for equality.

Parameters:
array1 - the first array.
array2 - the second arrray.
Returns:
A boolean.

hasDuplicateItems

public static boolean hasDuplicateItems(java.lang.Object[] array)
Deprecated. 
Returns true if any two items in the array are equal to one another. Any null values in the array are ignored.

Parameters:
array - the array to check.
Returns:
A boolean.