main
Interface MoreMath.Comparer

All Known Implementing Classes:
ParamTendenciesStat
Enclosing interface:
MoreMath

public static interface MoreMath.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;