What is an EnumSet in Java ?

EnumSet is a specialized implementation of Set...

Use - It is mainly used with enum types.

Single enum type - All the elements in an EnumSet must come from a single enum type when the set is created.

Bit vector - Internally, EnumSet is represented as bit vector.

Iterator - The iterator of EnumSet traverses the elements in their natural order. (It is the order in which the enum constants are declared).

Null - In an EnumSet, null elements are not permitted. If we try to insert a null element it throws NullPointerException.

Thread-safe - EnumSet is not a synchronized collection. For use in multi-threading scenarios, EnumSet should be synchronized.

Bit flags - EnumSet is a very good alternative to int based “bit flags” implementation.



You May Interest

What are the Thread-safe Classes in Java Collections Framework ?

What is Difference Between Include Directive and Include Action o ...

What are the Different Types of Events Provided by Spring Framewo ...

What is the Purpose of Native Method in Java ?

How Will You Delete a Cookie in JSP ?