I have an ArrayList that I\'d like to return a copy of. ArrayList has a clone method which has the following signature:
ArrayList
This should also work:
ArrayList orig = new ArrayList(); ArrayList copy = (ArrayList) orig.clone()