List of utility methods to do Collection to ArrayList Convert
ArrayList<E> arrayList = new ArrayList<>(); arrayList.addAll(collection); return arrayList;