Package proguard.util
Class FixedStringMatcher
- java.lang.Object
-
- proguard.util.StringMatcher
-
- proguard.util.FixedStringMatcher
-
public class FixedStringMatcher extends StringMatcher
ThisStringMatchertests whether strings start with a given fixed string and then match another optional givenStringMatcher.
-
-
Constructor Summary
Constructors Constructor Description FixedStringMatcher(java.lang.String fixedString)Creates a new FixedStringMatcher.FixedStringMatcher(java.lang.String fixedString, StringMatcher nextMatcher)Creates a new FixedStringMatcher.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleanmatches(java.lang.String string, int beginOffset, int endOffset)Checks whether the given substring matches.java.lang.Stringprefix()Returns a common prefix of all strings matched by thisStringMatcher.-
Methods inherited from class proguard.util.StringMatcher
matches
-
-
-
-
Constructor Detail
-
FixedStringMatcher
public FixedStringMatcher(java.lang.String fixedString)
Creates a new FixedStringMatcher.- Parameters:
fixedString- the string to match.
-
FixedStringMatcher
public FixedStringMatcher(java.lang.String fixedString, StringMatcher nextMatcher)Creates a new FixedStringMatcher.- Parameters:
fixedString- the string prefix to match.nextMatcher- an optional string matcher to match the remainder of the string.
-
-
Method Detail
-
prefix
public java.lang.String 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
protected boolean matches(java.lang.String string, int beginOffset, int endOffset)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.
-
-