static bool containsOneOfIC(Collection l, S... x) { Set set = asCISet(x); for (S a : unnull(l)) if (set.contains(a)) true; false; }