Package proguard.util
Class OrMatcher
java.lang.Object
proguard.util.StringMatcher
proguard.util.OrMatcher
This
StringMatcher tests whether strings matches at least one of the given StringMatcher instances.-
Constructor Summary
ConstructorsConstructorDescriptionOrMatcher(StringMatcher... matchers) Creates a new OrMatcher with the given string matchers. -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanChecks whether the given substring matches.prefix()Returns a common prefix of all strings matched by thisStringMatcher.Methods inherited from class proguard.util.StringMatcher
matches
-
Constructor Details
-
OrMatcher
Creates a new OrMatcher with the given string matchers.
-
-
Method Details
-
prefix
Description copied from class:StringMatcherReturns a common prefix of all strings matched by thisStringMatcher. If the returned value is null, then thisStringMatcherdoes not match any string.- Overrides:
prefixin classStringMatcher
-
matches
Description copied from class:StringMatcherChecks whether the given substring matches.- Specified by:
matchesin classStringMatcher- Parameters:
string- the string to match.beginOffset- the start offset of the substring (inclusive).endOffset- the end offset of the substring (exclusive).- Returns:
- a boolean indicating whether the substring matches the criterion.
-