Class Summary |
ContainsIgnoreCaseMatcher |
Matches if StringUtils.contains(java.lang.String, char) returns true for the two arguments after they have been
converted to lower case. |
EndsWithIgnoreCaseMatcher |
Matches if content.endsWith(searchTerm) returns true after the arguments have been converted to lower
case. |
EqualsIgnoreCaseMatcher |
Matches if StringUtils.equalsIgnoreCase(String, String) returns true for the arguments,
and content is neither null nor an empty string (""). |
StartsWithIgnoreCaseMatcher |
Matches if content.startsWith(searchTerm) returns true after the arguments have been converted to lower
case. |