static bool containsAnyOfIgnoreCase(S s, Collection strings) { if (s == null) false; for (S x : unnull(strings)) if (containsIgnoreCase(s, x)) true; false; }