static Comparator reverseComparator(final Comparator c) { ret new Comparator() { public int compare(A a, A b) { ret c.compare(b, a); } }; }