Commons Collections 简明教程

Apache Commons Collections - Ignore Null

Apache Commons Collections 库的 CollectionUtils 类提供各种实用方法,用于涵盖广泛使用场景的常见操作。它有助于避免编写样板代码。在 jdk 8 之前,该库非常有用,因为 Java 8 的 Stream API 中现在提供了类似的功能。

Check for Not Null Elements

CollectionUtils 的 addIgnoreNull() 方法可用于确保仅将非空值添加到集合中。

Declaration

以下是声明:

org.apache.commons.collections4.CollectionUtils.addIgnoreNull() 方法 −

public static <T> boolean addIgnoreNull(Collection<T> collection, T object)

Parameters

  1. collection − 要添加到其中的集合,不得为 null。

  2. object − 要添加的对象,如果为 null,则不会添加。

Return Value

如果集合发生更改,则返回 True。

Exception

  1. NullPointerException − 如果集合为 null。

Example

以下示例显示 org.apache.commons.collections4.CollectionUtils.addIgnoreNull() 方法的用法。我们尝试添加一个 null 值和一个非 null 值示例。

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");
      }
   }
}

Output

输出如下:

[a]
Null value is not present