See Also: IEnumeration Members
A legacy iteration interface.
New code should use Java.Util.IIterator instead. Iterator replaces the enumeration interface and adds a way to remove elements from a collection.
If you have an Enumeration and want a Collection, you can use Collections.list(java.util.Enumeration<T>) to get a List.
If you need an Enumeration for a legacy API and have a Collection, you can use Collections.enumeration(java.util.Collection<T>).