Java examples for java.util:Set Intersection
Get set Intersection
//package com.java2s; import java.util.HashSet; import java.util.Set; public class Main { public static <A> Set<A> setIntersection(Set<A> a, Set<A> b) { Set<A> set = new HashSet<A>(); for (A x : a) if (b.contains(x)) set.add(x);//w w w .j av a 2s . c o m return set; } }