de.hillenbrand.util
Class ArrayUtils

java.lang.Object
  extended byde.hillenbrand.util.ArrayUtils

public class ArrayUtils
extends java.lang.Object

Some utilities concerning arrays.


Method Summary
static int indexOf(java.lang.Object[] a, java.lang.Object o, java.util.Comparator c)
          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 int indexOf(java.lang.Object[] a,
                          java.lang.Object o,
                          java.util.Comparator c)
Find the index of object o in the array a using the comparator c. Returns -1 if o is not in a.