in Java which is the best way to copy the objects UserAndSum from one List to one other List.
EDIT: I have a list of OBJ users with many users and I want a new one with the first 25 users only
List <UserAndSum> list= new ArrayList<UserAndSum>();
list.add(new UserAndSum(john, 55));
list.add(new UserAndSum(tom, 88));
list.add(new UserAndSum(brian, 99));
....
List <UserAndSum> list25 = new ArrayList<UserAndSum>();
???? ADD ONLY 25 UserAndSum????