Package proguard.util
Class AndMatcher
- java.lang.Object
-
- proguard.util.StringMatcher
-
- proguard.util.AndMatcher
-
public class AndMatcher extends StringMatcher
ThisStringMatcher
tests whether strings match both givenStringMatcher
instances.
-
-
Constructor Summary
Constructors Constructor Description AndMatcher(StringMatcher matcher1, StringMatcher matcher2)
Creates a new AndMatcher with the two given string matchers.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
matches(java.lang.String string, int beginOffset, int endOffset)
Checks whether the given substring matches.java.lang.String
prefix()
Returns a common prefix of all strings matched by thisStringMatcher
.-
Methods inherited from class proguard.util.StringMatcher
matches
-
-
-
-
Constructor Detail
-
AndMatcher
public AndMatcher(StringMatcher matcher1, StringMatcher matcher2)
Creates a new AndMatcher with the two given string matchers.
-
-
Method Detail
-
prefix
public java.lang.String prefix()
Description copied from class:StringMatcher
Returns a common prefix of all strings matched by thisStringMatcher
. If the returned value is null, then thisStringMatcher
does not match any string.- Overrides:
prefix
in classStringMatcher
-
matches
protected boolean matches(java.lang.String string, int beginOffset, int endOffset)
Description copied from class:StringMatcher
Checks whether the given substring matches.- Specified by:
matches
in 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.
-
-