Java Utililty Methods Iterator to ArrayList

List of utility methods to do Iterator to ArrayList

Description

The list of methods to do Iterator to ArrayList are organized into topic(s).

Method

ArrayListtoArrayListFromIterator(Iterator iterator)
to Array List From Iterator
ArrayList<T> r = new ArrayList<T>();
while (iterator.hasNext())
    r.add(iterator.next());
return r;