ApacheCommonsCollections-ユニオン
Apache Commons CollectionsライブラリのCollectionUtilsクラスは、幅広いユースケースをカバーする一般的な操作のためのさまざまなユーティリティメソッドを提供します。ボイラープレートコードの記述を回避するのに役立ちます。このライブラリは、Java8のStreamAPIで同様の機能が提供されるようになったため、jdk8より前は非常に便利です。
ユニオンをチェックしています
CollectionUtilsのunion()メソッドを使用して、2つのコレクションの和集合を取得できます。
宣言
以下はの宣言です org.apache.commons.collections4.CollectionUtils.union() 方法−
public static <O> Collection<O> union(
Iterable<? extends O> a, Iterable<? extends O> b)
パラメーター
a −最初のコレクションはnullであってはなりません。
b −2番目のコレクションはnullであってはなりません。
戻り値
2つのコレクションの和集合。
例
次の例は、の使用法を示しています org.apache.commons.collections4.CollectionUtils.union()方法。2つのリストの和集合を取得します。
import java.util.Arrays;
import java.util.List;
import org.apache.commons.collections4.CollectionUtils;
public class CollectionUtilsTester {
public static void main(String[] args) {
//checking inclusion
List<String> list1 = Arrays.asList("A","A","A","C","B","B");
List<String> list2 = Arrays.asList("A","A","B","B");
System.out.println("List 1: " + list1);
System.out.println("List 2: " + list2);
System.out.println("Union of List 1 and List 2: "
+ CollectionUtils.union(list1, list2));
}
}
出力
これにより、次の出力が生成されます-
List 1: [A, A, A, C, B, B]
List 2: [A, A, B, B]
Union of List 1 and List 2: [A, A, A, B, B, C]