forEnumeration

Adapts an Enumeration to the Iterator interface.

This method has no equivalent in Iterables because viewing an Enumeration as an Iterable is impossible. However, the contents can be copied into a collection using Collections.list.

Java 9 users: use enumeration.asIterator() instead.

See also