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?
|
|
|||||||
|
|
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:
It would be better to use A better alternative is to write a small wrapper class around
|
|||||||||||||||||
|
|
Javadoc
|
|||||||||||
|
|
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
If you really require an Or you could use Google's Guava library:
|
||||
|
|