Is there a way to prevent a treemap from accepting null values, or do I need to do a check every time I enter something?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Write up a delegating Set that wraps the real Set and add a guard to Set.add(). If you are providing a Comparator to the TreeSet you can also complain if either of thw two inputs to the Comparator are null. |
|||
|
|
You could also throw an IllegalArgumentException, but a NullPointerException is most appropriate IMO. Note that it is incorrect to return |
|||