Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple collections question. I have a Set<String> object. I want an enumeration of the strings in that set. What is the cleanest/best way to go about it?

share|improve this question
1  
Enumeration as in java.util.Enumeration? Any reason not to use java.util.Iterable instead? – Jon Skeet Aug 16 '11 at 22:45
yes..because i'm overriding a method that specifically returns an Enumeration<String>. – Charlotte Aug 16 '11 at 22:47

3 Answers

up vote 0 down vote accepted

EDIT: There's no need to write your own (although I'll leave the implementation below for posterity) - see Kevin Bourrillion's answer for the one in the JDK.


If you really need an enumeration, could could use:

Enumeration<String> x = new Vector(set).elements();

It would be better to use Iterable<E> if at all possible though...

A better alternative is to write a small wrapper class around Iterator<E>. That way you don't have to take a copy just to find an imlementation of Enumeration<E>:

import java.util.*;

class IteratorEnumeration<E> implements Enumeration<E>
{
    private final Iterator<E> iterator;

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

    public E nextElement() {
        return iterator.next();
    }

    public boolean hasMoreElements() {
        return iterator.hasNext();
    }

}


public class Test {
    public static void main(String[] args) {
        Set<String> set = new HashSet<String>(); 
        Enumeration<String> x = new IteratorEnumeration<String>(set.iterator());
    }
}
share|improve this answer
@Charlotte: See my edit for a nicer option which doesn't make a copy. – Jon Skeet Aug 16 '11 at 22:52
@Downvoter: Care to comment? – Jon Skeet Aug 19 '11 at 12:38
1  
@Snekse: If the previous downvoter had said as much, that would have been helpful. I can't delete my answer now as it's the accepted one, but I can point out Kevin's... – Jon Skeet Aug 29 '11 at 20:18
1  
@Snekse: I have no problem with being downvoted due to the fact that it's already in the JDK. I just object to a downvote without a comment... – Jon Skeet Aug 30 '11 at 16:09
1  
@Jon, +1, Downvote doesn't suits you, And nice answer as well! – Owl Sep 8 '11 at 12:16
show 3 more comments

java.util.Collections.enumeration(set)

Javadoc

Returns an enumeration over the specified collection. This provides interoperability with legacy APIs that require an enumeration as input.

share|improve this answer
5  
Ok, I realize my answer is terse, but that's because that's all that really needs to be said. :) This method is in the JDK and does exactly what the poster is asking for. It is strange to me that it would be ranked last. – Kevin Bourrillion Aug 25 '11 at 15:39
thanks for adding the javadoc quote, Snekse. – Kevin Bourrillion Aug 31 '11 at 4:56
1  
to answer the question of why this was ranked last: #1: it's 3 days late (sadly, that does matter, at least in the short term), #2: it's on the same question as one answered by @Jon Skeet, #3 It's very terse. Despite being correct, usually voters want to see more effort than a link. Anyway, as of now you have 32 upvotes, I think it's pretty clear that this is the correct answer, even though it isn't accepted (the asker probably 'solved' his problem and moved on by now). – TM. Sep 2 '11 at 16:45

Assuming you mean enumeration in the mathematical sense the cleanest way to do this is via a for-loop, applicable to any class that implements Iterable:

Set<String> strs = ...

for (String s : strs) {
 ...
}

If you really require an Enumeration you could implement an adapter class to wrap the Iterator returned by calling iterator(). There is an adapter class in the Apache Collections library: IteratorEnumeration.

Or you could use Google's Guava library:

Set<String> mySet = ...
Enumeration<String> = Iterators.asEnumeration(mySet.iterator());
share|improve this answer
Downvoter ... care to comment? – Adamski Sep 1 '11 at 21:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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