CollectionUtils class of Apache Commons Collections library provides various utility methods for common operations covering wide range of use cases. It helps avoid writing boilerplate code. This library is very useful prior to jdk 8 as similar functionalities are now provided in Java 8's Stream API.
addIgnoreNull() method of CollectionUtils can be used to ensure that only non-null values are getting added to the collection.
Following is the declaration for
org.apache.commons.collections4.CollectionUtils.addIgnoreNull() method −
public static <T> boolean addIgnoreNull(Collection<T> collection, T object)
collection − The collection to add to, must not be null.
object − The object to add, if null it will not be added.
True if the collection changed.
NullPointerException − If the collection is null.
The following example shows the usage of org.apache.commons.collections4.CollectionUtils.addIgnoreNull() method. We are trying to add a null value and a sample non-null value.
import java.util.LinkedList; import java.util.List; import org.apache.commons.collections4.CollectionUtils; public class CollectionUtilsTester { public static void main(String[] args) { List<String> list = new LinkedList<String>(); CollectionUtils.addIgnoreNull(list, null); CollectionUtils.addIgnoreNull(list, "a"); System.out.println(list); if(list.contains(null)) { System.out.println("Null value is present"); } else { System.out.println("Null value is not present"); } } }
The output is mentioned below −
[a] Null value is not present