class IntComparer implements COMPARER<int> { public int compare(int i, int j) { if (i<j) {return 1;}; if (j<i) {return -1;}; return 0; } }