List of utility methods to do ArrayList Copy
if (src == null) return null; ArrayList<T> dst = new ArrayList<T>(); for (int c = 0; c < src.size(); c++) { dst.add(src.get(c)); return dst;