Android Utililty Methods Set Search

List of utility methods to do Set Search

Description

The list of methods to do Set Search are organized into topic(s).

Method

booleanfind(String str, Set stop)
find
for (String st : stop) {
    if (str.contains(st))
        return true;
return false;