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
Use reverse(...) methods of java.util.Collections class. Pass your list as a parameter and your list will get reversed.
reverse(...)
java.util.Collections
Collections.reverse(list);