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