Set s = new HashSet();
if (s.retainAll(anotherSet)) {
     ...
}

now it anotherSet is null the code is showing nullPointerExcpetion. How can I make retainAll work whether anotherSet is null or not?

1. Write your own retainAll() wrapper method which performs a NULL check since the one present in AbstractCollection doesn't.
2. Manually perform a NULL check

if(anotherSet != null && set.retainAll(anotherSet)) { // something }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.