Package proguard.util
Class ListMatcher
java.lang.Object
proguard.util.StringMatcher
proguard.util.ListMatcher
This
StringMatcher tests whether strings match a given list of StringMatcher
instances. The instances are considered sequentially. Each instance in the list can optionally be
negated, meaning that a match makes the entire remaining match fail.-
Constructor Summary
ConstructorsConstructorDescriptionListMatcher(StringMatcher... matchers) ListMatcher(StringMatcher[] matchers, boolean[] negate) -
Method Summary
Methods inherited from class proguard.util.StringMatcher
matches, prefix
-
Constructor Details
-
ListMatcher
-
ListMatcher
-
-
Method Details
-
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.
-