Why can't I do:

Enumeration e = ...
for (Object o : e)
  ...
link|improve this question

71% accept rate
Enumeration was replaced by Iterator in Java 1.2 in 1998 and is retained for legacy support. The real question is why you want to use it. Possibly because you use a library which forces you to do so? – Peter Lawrey Aug 27 '10 at 21:57
@Peter - yes, an external library is the answer. – ripper234 Aug 29 '10 at 20:19
feedback

4 Answers

up vote 19 down vote accepted

Because Enumeration<T> doesn't extend Iterable<T>. Here is an example of making Iterable Enumerations.

As to why that's an interesting question. This isn't exactly your question but it sheds some light on it. From the Java Collections API Design FAQ:

Why doesn't Iterator extend Enumeration?

We view the method names for Enumeration as unfortunate. They're very long, and very frequently used. Given that we were adding a method and creating a whole new framework, we felt that it would be foolish not to take advantage of the opportunity to improve the names. Of course we could support the new and old names in Iterator, but it doesn't seem worthwhile.

That basically suggests to me that Sun wants to distance themselves from Enumeration, which is very early Java with quite a verbose syntax.

link|improve this answer
6  
Next question: why aren't Enumerations Iterable? stackoverflow.com/questions/27240/… – Michael Myers Aug 6 '09 at 16:37
1  
Is there a semantic difference between the two? (I'm not familiar with the Iterable class)? Why not have for work on Enumeration as well? – ripper234 Aug 6 '09 at 16:37
3  
Because Enumerations are more akin to Iterator, not Iterable (see the stackoverflow question mmyers posted). As a workaround, you can do for(; e.hasMoreElements(); ) { e.getNextElement(); } – Tim Aug 6 '09 at 16:40
1  
But Iterators are not Iterable either. You can't do for (obj : itr). The reason for this is that Iterable is really repeatedly iterable, whereas an iterator can only be iterated over once. – oxbow_lakes Aug 6 '09 at 17:06
Do you mean "Enumeration<T> doesnt Implement Iterably<T>" instead of extends? – James.Elsey Aug 26 '10 at 16:26
feedback

You could use Collections#list(Enumeration) to iterate over them that way anyway.

Enumeration e = ...
for (Object o : Collections.list(e))
  ...
link|improve this answer
+1 It might also be important to point out that this causes the iteration to happen twice. Once to fill a new ArrayList and a second time for the for each loop. As well as the memory overhead of the ArrayList. – mR_fr0g Feb 22 at 10:28
feedback

The new-style-for-loop ("foreach") works on arrays, and things that implement the Iterable interface.

It's also more analogous to Iterator than to Iterable, so it wouldn't make sense for Enumeration to work with foreach unless Iterator did too (and it doesn't). Enumeration is also discouraged in favor of Iterator.

link|improve this answer
Let's be careful with terms here. Deprecation means something very specific when discussing APIs. Use of Enumeration is discouraged, but it's not deprecated. – ykaganovich Aug 6 '09 at 17:25
ykaganovich: good point. I've corrected the text in the answer. – Laurence Gonsalves Aug 6 '09 at 19:38
feedback

Because an Enumeration (and most classes derived from this interface) does not implement Iterable.

You can try to write your own wrapper class.

link|improve this answer
You shouldn't write a wrapper for Enumeration that turns it into an Iterable any more than you should create such a wrapper for Iterator. Iterator and Enumeration objects are stateful with respect to iteration. Iterables are not. – Laurence Gonsalves Aug 6 '09 at 19:40
feedback

Your Answer

 
or
required, but never shown

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