com.objexcel.util
Class Sorting.Comparer

java.lang.Object
  |
  +--com.objexcel.util.Sorting.Comparer
Direct Known Subclasses:
Sorting.ObjectArrayComparer, Sorting.ReverseComparer

public abstract static class Sorting.Comparer
extends java.lang.Object

the interface used to compare (for sorting /searching purposes a and b


Constructor Summary
Sorting.Comparer()
           
 
Method Summary
abstract  int compare(java.lang.Object a, java.lang.Object b)
          return negative number if a < b, 0 if a == b or +positive number if b > a
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Sorting.Comparer

public Sorting.Comparer()
Method Detail

compare

public abstract int compare(java.lang.Object a,
                            java.lang.Object b)
return negative number if a < b, 0 if a == b or +positive number if b > a