I have a class that implements the Enumeration interface, but Java\'s foreach loop requires the Iterator interface. Is there an <
Enumeration
Iterator
If you can modify the class then you can simply implement Iterator too and add the remove method..
remove