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
If you want to sort the list in reverse natural order, guava's Ordering has a reverse method:
List list = Ordering.natural().reverse().sortedCopy(asu2);