java copy of typed list code example
Example 1: how to copy list item to another list in java
List<Integer> source = Arrays.asList(1,2,3);
List<Integer> dest = Arrays.asList(4,5,6);
Collections.copy(dest, source);
Example 2: how to copy list item to another list in java
List<Integer> copy = new ArrayList<>();
copy.addAll(list);