Java Utililty Methods Collection Find

List of utility methods to do Collection Find

Description

The list of methods to do Collection Find are organized into topic(s).

Method

booleanisAnyIncludedIn(Collection findAnyOfThese, Collection inThisCollection)
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;