Suppose i have a
List<Integer> l = new ArrayList<Integer>();
and would like to have this list reversed with the help of
public static List<Object> reverseList(List<Object> o);
Thought process here is that one day i may be dealing with Integers and another with Doubles. Would be nice to have a generic method that is able to reverse my Lists
How should reverseList be declared for this to work? Please advise
One way to declare it is
You might also want to take a look at
Collections.reverse.