proguard.util
Interface StringMatcher
- All Known Implementing Classes:
- AndMatcher, ConstantMatcher, EmptyStringMatcher, ExtensionMatcher, FixedStringMatcher, ListMatcher, NotMatcher, OrMatcher, SettableMatcher, VariableStringMatcher
public interface StringMatcher
This interface provides a method to determine whether strings match a given
criterion, which is specified by the implementation.
|
Method Summary |
boolean |
matches(java.lang.String string)
Checks whether the given string matches. |
matches
boolean matches(java.lang.String string)
- Checks whether the given string matches.
- Parameters:
string - the string to match.
- Returns:
- a boolean indicating whether the string matches the criterion.