I want to have a reversed list view on a list (in a similar way than List#sublist provides a sublist view on a list). Is there some function which provides this
List#sublist
Its not exactly elegant, but if you use List.listIterator(int index) you can get a bi-directional ListIterator to the end of the list:
//Assume List foo; ListIterator li = foo.listIterator(foo.size()); while (li.hasPrevious()) { String curr = li.previous() }