EnumSet : Java Glossary

EnumSet
EnumSet lets you handle combinations of enum constants. If you are a mathematician, you might look on EnumSet as a way of doing efficient set operations such as union, intersection, difference, and complement. Internally the calculations are done with bits, packed into longs, much like BitSet. This representation is compact and efficient. If you study the documentation for EnumSet you will not see much. EnumSet inherits all its useful methods from AbstractCollection via AbstractSet.

If you are a programmer, you might look on EnumSet as a high level way of manipulating bit flags and bit masks.

Note it is spelled EnumSet not Enumset.

Using An EnumSet

Here is a little program to demonstrate some of the things you can do with an EnumSet.

Two other techniques for dealing with sets include HashSet and BitSet. You can also do low level bit masking using byte, int or long.

Learning More

Oracle’s Javadoc on EnumSet class : available:
Oracle’s Javadoc on AbstractCollection class : available:
Oracle’s Javadoc on Set class : available:
Oracle’s Javadoc on Collections.unmodifiableSet : available:

CMP homejump to top You can get the freshest copy of this page from: or possibly from your local J: drive (Java virtual drive/mindprod.com website mirror)
http://mindprod.com/jgloss/enumset.html J:\mindprod\jgloss\enumset.html
logo
Please email your , letters to the editor, errors, omissions, typos, formatting errors, ambiguities, unclear wording, broken/redirected link reports, suggestions to improve this page or comments to Roedy Green : feedback email. If you want your message, your name or email kept confidential, not considered for public posting, please explicitly specify that. Unless you state otherwise, I will treat your message as a letter to the editor that I may or may not publish in the feedback section. After that, it will be too late to retract it. If you disagree with something I said, please quote it and cite the web page where you found it, tell me why you think it is wrong, and, if possible, provide some supporting evidence. Threatening to kill me or spouting obscenities has yet to persuade me to change my mind.
mindprod.com IP:[65.110.21.43]
view BlogYour face IP:[38.107.179.212]
You are visitor number 19,473.