List of utility methods to do Collection Find
boolean | isAnyIncludedIn(Collection Checks if any of the elements in the first collection can be found in the second collection. for (E findThisItem : findAnyOfThese) { if (inThisCollection.contains(findThisItem)) { return true; return false; |