edu.brandeis.cs.steele.util
Class ArrayUtilities

java.lang.Object
  extended by edu.brandeis.cs.steele.util.ArrayUtilities

public abstract class ArrayUtilities
extends java.lang.Object

Miscellaneous array functions.

Author:
Oliver Steele, steele@cs.brandeis.edu

Constructor Summary
ArrayUtilities()
           
 
Method Summary
static int indexOf(java.lang.Object[] array, java.lang.Object value)
          Return the index of the first element of array that is equal to value, or -1, if no such element exists.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ArrayUtilities

public ArrayUtilities()
Method Detail

indexOf

public static int indexOf(java.lang.Object[] array,
                          java.lang.Object value)
Return the index of the first element of array that is equal to value, or -1, if no such element exists.