I have List list1 in direct order. List list = Ordering.natural().sortedCopy(asu2);
List list = Ordering.natural().sortedCopy(asu2);
How to change order. And I don\'t know how to rewrite
you can reverse any type by just putting "-" or negative sign infront of your return.
Collections.sort(listed, new Comparator() { @Override public int compare(Object o1, Object o2) { return -o1.getLeft().compareTo(o2.getLeft()); } });