java efficient way to check if string contains a substring array code example
Example: java if one sting on array match
String[] fieldsToInclude = { "id", "name", "location" };
if ( ArrayUtils.contains( fieldsToInclude, "id" ) ) {
// Do some stuff.
}