In Java 5 and above you have the foreach loop, which works magically on anything that implements Iterable:

for (Object o : list) {
  doStuff(o);
}

However, Enumerable still does not implement Iterable, meaning that do iterate over an Enumeration you must do the following:

for(; e.hasMoreElements() ;) {
  doStuff(e.getNextElement());
}

Does anyone know if there is a reason why Enumeration still does not implement Iterable?

Edit: As a clarification, I'm not talking about the language concept of an enum, I'm talking a Java-specific class in the Java API called 'Enumeration'.

link|improve this question

Shouldn't that be doStuff(e.nextElement()) inside the block? – Hans L Jan 13 '10 at 15:00
Assuming it was you who downvoted Camilo Díaz's answer, and are not interested in workarounds, then the question is really "why was it designed this way" in which case it is subjective and should be CW. – finnw Apr 19 '10 at 22:26
Sorry, no: cl.ly/ao5 – SCdF Apr 24 '10 at 4:14
feedback

5 Answers

up vote 15 down vote accepted

Enumeration hasn't been modified to support Iterable because it's an interface not a concrete class (like Vector, which was modifed to support the Collections interface).

If Enumeration was changed to support Iterable it would break a bunch of people's code.

link|improve this answer
4  
Still, given that there is for-each support for both Iterable and arrays, why didn't sun include Enumerable as well? – akuhn Nov 26 '08 at 16:13
3  
@Adrian Kuhn: they didn't include for-each support for Iterator, and Enumerable behaves like an Iterator, not an Iterable. – Laurence Gonsalves Aug 6 '09 at 16:43
feedback

It doesn't make sense for Enumeration to implement Iterable. Iterable is a factory method for Iterator. Enumeration is analogous to Iterator, and only maintains state for a single enumeration.

So, be careful trying to wrap an Enumeration as an Iterable. If someone passes me an Iterable, I will assume that I can repeatedly call iterator on it, creating as many Iterators as I want, and iterating independently on each. A wrapped Enumeration will not fulfill this contract; don't let your wrapped Enumeration escape from your own code.

Enumeration is like an Iterator, not an Iterable. A Collection is Iterable. An Iterator is not.

You can't do this:

Vector<X> list = …
Iterator<X> i = list.iterator();
for (X x : i) {
    x.doStuff();
}

So it wouldn't make sense to do this:

Vector<X> list = …
Enumeration<X> i = list.enumeration();
for (X x : i) {
    x.doStuff();
}

There is no Enumerable equivalent to Iterable. It could be added without breaking anything to work in for loops, but what would be the point? If you are able to implement this new Enumerable interface, why not just implement Iterable instead?

link|improve this answer
feedback

As an easy and clean way of using an Enumeration with the enhanced for loop, convert to an ArrayList with java.util.Collections.list.

for (TableColumn col : Collections.list(columnModel.getColumns()) {

(javax.swing.table.TableColumnModel.getColumns returns Enumeration.)

Note, this may be very slightly less efficient.

link|improve this answer
Funny: this (columns in the column model) is the exact reason I found this question. – Dave Apr 20 '11 at 18:03
Nice workaround. – Thorbjørn Ravn Andersen Apr 11 at 11:26
feedback

AFAIK Enumeration is kinda "deprecated":

Iterator takes the place of Enumeration in the Java collections framework

I hope they'll change the Servlet API with JSR 315 to use Iterator instead of Enumeration.

link|improve this answer
feedback

On Java Specialists Issue 107, Dr. Heinz M. Kabutz shows a nice way to make an Iterable instance from an Enumeration via adapter.

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.