ucr.core
Interface Comparer

All Known Implementing Classes:
ResultsQSort

public interface Comparer


Method Summary
 int compare(java.lang.Object a, java.lang.Object b)
          The interface implementation should compare the two objects and return an int using these rules: if (a > b) return > 0; if (a == b) return 0; if (a < b) return < 0;
 

Method Detail

compare

public int compare(java.lang.Object a,
                   java.lang.Object b)
The interface implementation should compare the two objects and return an int using these rules: if (a > b) return > 0; if (a == b) return 0; if (a < b) return < 0;