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?

link|improve this question

Its a lot simpler to either, not use Enumerator as its a legacy class or not use the "enhanced" for each loop. – Peter Lawrey Feb 15 '11 at 17:40
1  
The for-each loop requires an Iterable, not an Iterator; which do you really want? – Michael Myers Apr 10 at 21:22
feedback

5 Answers

up vote 2 down vote accepted

You need a so called "Adapter", to adapt the Enumeration to the otherwise incompatible Iterator. Apache commons-collections has EnumerationIterator. The usage is:

Iterator iterator = new EnumerationIterator(enumeration);
link|improve this answer
+1 on Apache Commons – vz0 Feb 15 '11 at 17:38
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:

IterableEnumerator

link|improve this answer
feedback

No need to roll your own. Look at Google's Guava library. Specifically

Iterators.forEnumeration()
link|improve this answer
That makes an Iterator, not an Iterable. – Thorbjørn Ravn Andersen Apr 10 at 12:26
@ThorbjørnRavnAndersen - The OP explicitly asked for an adapter from Enumeration to Iterator. He did not ask for Enumeration to Iterable. – rfeak Apr 10 at 14:53
He wants to use it in foreach, hence the Iterator is a typo. – Thorbjørn Ravn Andersen Apr 10 at 16:23
feedback

a) I'm pretty sure you mean Enumeration, not Enumerator
b) Guava provides a Helper method Iterators.forEnumeration(enumeration) that generates an iterator from an Enumeration, but that won't help you either, as you need an Iterable (a provider of Iterators), not an Iterator
c) you could do it with this helper class:

public class WrappingIterable<E> implements Iterable<E>{
    private Iterator<E> iterator;

    public WrappingIterable(Iterator<E> iterator){
        this.iterator = iterator;
    }

    @Override
    public Iterator<E> iterator(){
        return iterator;
    }
}

And now your client code would look like this:

for(String string : new WrappingIterable<String>(
                        Iterators.forEnumeration(myEnumeration))){
    // your code here            
}

But is that worth the effort?

link|improve this answer
You could let your wrapper constructor accept an enumeration. – Thorbjørn Ravn Andersen Apr 10 at 19:07
Also note that Iterable means you can ask for the iterator repeatedly. This wrapper does not comply with that. – Thorbjørn Ravn Andersen Apr 10 at 23:28
feedback

If you can modify the class then you can simply implement Iterator<T> too and add the remove method..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.