I have a class that implements the Enumeration<T> interface, but Java's foreach loop requires the Iterator<T> interface. Is there an Enumeration to Iterator Adapter in Java's standard library?
| |||||||
feedback
|
|
You need a so called "Adapter", to adapt the
| ||||
|
feedback
|
|
There's nothing that is part of the standard library. Unfortunately you'll have to roll your own adapter. There are examples out there of what others have done, for example: | |||
|
feedback
|
|
No need to roll your own. Look at Google's Guava library. Specifically
| |||||||
feedback
|
|
a) I'm pretty sure you mean
And now your client code would look like this:
But is that worth the effort? | |||||
feedback
|
|
If you can modify the class then you can simply implement | |||
|
feedback
|