Search code examples
javacollectionsnull

Collection class that doesn't allow null elements?


I'm looking for a class from the Java Collection Framework that would not allow null elements.

Do you know one?


Solution

  • Most Queue implementations (with the notable exception of LinkedList) don't accept null.

    EnumSet is a special-purpose Set implementation that doesn't allow null values.