1You can use such trick:
2
3myObject = new ArrayList<Object>(myTempObject);
4or use
5
6myObject = (ArrayList<Object>)myTempObject.clone();
7You can get some information about clone() method here
8
9But you should remember, that all these ways will give you a copy of your List, not all of its elements. So if you change one of the elements in your copied List, it will also be changed in your original List.