Package proguard.util
Class VariableStringMatcher
java.lang.Object
proguard.util.StringMatcher
proguard.util.VariableStringMatcher
This
StringMatcher tests whether strings start with a specified variable string and then
match another optional given StringMatcher.-
Constructor Summary
ConstructorsConstructorDescriptionVariableStringMatcher(char[] allowedCharacters, char[] disallowedCharacters, int minimumLength, int maximumLength, StringMatcher nextMatcher) Creates a new VariableStringMatcher. -
Method Summary
Modifier and TypeMethodDescriptionReturns the string that has been matched most recently.protected booleanChecks whether the given substring matches.Methods inherited from class proguard.util.StringMatcher
matches, prefix
-
Constructor Details
-
VariableStringMatcher
public VariableStringMatcher(char[] allowedCharacters, char[] disallowedCharacters, int minimumLength, int maximumLength, StringMatcher nextMatcher) Creates a new VariableStringMatcher.- Parameters:
allowedCharacters- an optional list of allowed characters.disallowedCharacters- an optional list of disallowed characters.minimumLength- the minimum length of te variable string.maximumLength- the maximum length of te variable string.nextMatcher- an optional next matcher for the remainder of the string.
-
-
Method Details
-
getMatchingString
Returns the string that has been matched most recently. -
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.
-