Package edu.umd.cs.findbugs.util
Interface StringMatcher
-
- All Known Implementing Classes:
ContainsCamelCaseWordStringMatcher
,ExactStringMatcher
,RegexStringMatcher
public interface StringMatcher
A boolean predicate for matching String values.- Author:
- David Hovemeyer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
matches(java.lang.String s)
Return whether or not the given String matches.
-