This class is part of the Java Tools (see http://mpii.de/yago-naga/javatools).
It is licensed under the Creative Commons Attribution License
(see http://creativecommons.org/licenses/by/3.0) by
the YAGO-NAGA team (see http://mpii.de/yago-naga).
This class provides a simple converter from Enumerations to Iterators.
It accepts untyped Enumerations, but yields always typed Iterators.
It can also convert an untyped Enumeration to a list.
Example:
for(String s : new IteratorForEnumeration<String>(someUntypedEnumeration)) {
System.out.println(s);
}