Here you can find the source of copyList(List
public static <T> List<T> copyList(List<T> list)
//package com.java2s; import java.util.ArrayList; import java.util.List; public class Main { public static <T> List<T> copyList(List<T> list) { return new ArrayList<T>(list); }/*from w w w.j a va2s . c o m*/ }