Package proguard.util
Class TransformedStringMatcher
java.lang.Object
proguard.util.StringMatcher
proguard.util.TransformedStringMatcher
This StringMatcher delegates its tests to another given StringMatcher, with strings that have
been transformed with a given function.
-
Constructor Summary
ConstructorsConstructorDescriptionTransformedStringMatcher(StringFunction stringFunction, StringMatcher stringMatcher) Creates a new TransformedStringMatcher. -
Method Summary
Methods inherited from class proguard.util.StringMatcher
prefix
-
Constructor Details
-
TransformedStringMatcher
Creates a new TransformedStringMatcher.- Parameters:
stringFunction- the function to transform strings.stringMatcher- the string matcher to test the transformed strings.
-
-
Method Details
-
matches
Description copied from class:StringMatcherChecks whether the given string matches.- Overrides:
matchesin classStringMatcher- Parameters:
string- the string to match.- Returns:
- a boolean indicating whether the string matches the criterion.
-
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.
-