22

Is there a simple way of removing null references from a HashSet like the way we can delete them from a List using list.removeAll(Collections.singletonList(null)) ?

Joachim Sauer
  • 302,674
  • 57
  • 556
  • 614
Mouna Cheikhna
  • 38,870
  • 10
  • 48
  • 69

2 Answers2

62

Since a Set can not contain the same value twice (including null, if it is supported by the specific Set implementation), simply doing set.remove(null) would be sufficient.

Note that you don't even need to check for the existence of null before, because remove(null) will simply do nothing if the Set doesn't contain null.

Joachim Sauer
  • 302,674
  • 57
  • 556
  • 614
4

A HashSet, being a set, only contains one "copy" of any object, which also means that it can only contain one instance of null. Thus, you can just use HashSet.remove(null).

Tikhon Jelvis
  • 67,485
  • 18
  • 177
  • 214