static L sortedDesc(Collection c, final O comparator) { L l = cloneList(c); sort(l, makeReversedComparator(comparator)); ret l; } static L sortedDesc(Collection c) { L l = cloneList(c); sort(l); Collections.reverse(l); ret l; }