public interface StringBiPredicate
| Modifier and Type | Method and Description |
|---|---|
boolean |
test(java.lang.String valueToTest,
java.lang.String valueToCompareAgainst)
Returns true if valueToTest meets the criteria of this predicate when valueToCompareAgainst is considered
|
boolean test(java.lang.String valueToTest,
java.lang.String valueToCompareAgainst)
Example (to compare all the values v in a column such that v = "foo", v is the value to test and "foo" is the value to compare against
valueToTest - the value you're checking. Often this is the value of a cell in a short columnvalueToCompareAgainst - the value to compare against. Often this is a single value for all comparisions