de.hillenbrand.util
Class ArrayUtils

java.lang.Object
  extended by de.hillenbrand.util.ArrayUtils

public class ArrayUtils
extends java.lang.Object

Some utilities concerning arrays.


Method Summary
static
<T> int
indexOf(T[] array, T object, java.util.Comparator<? super T> comp)
          Find the index of object o in the array a using the comparator c.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

indexOf

public static <T> int indexOf(T[] array,
                              T object,
                              java.util.Comparator<? super T> comp)
Find the index of object o in the array a using the comparator c. Returns -1 if o is not in a.