static Comparator mapComparatorDesc(final Map map) { ret new Comparator() { public int compare(A a, A b) { ret cmp(map.get(b), map.get(a)); } }; }