Package proguard.util
Class MatchedStringMatcher
java.lang.Object
proguard.util.StringMatcher
proguard.util.MatchedStringMatcher
This
StringMatcher tests whether strings start with a specified variable string and then
match another optional given StringMatcher.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMatchedStringMatcher(VariableStringMatcher variableStringMatcher, StringMatcher nextMatcher) Creates a new MatchedStringMatcher -
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
-
MatchedStringMatcher
Creates a new MatchedStringMatcher- Parameters:
variableStringMatcher- the variable string matcher that can provide the string to match.nextMatcher- an optional string matcher to match the remainder of the string.
-
-
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.
-