Package proguard.util
Class ListMatcher
- java.lang.Object
-
- proguard.util.StringMatcher
-
- proguard.util.ListMatcher
-
public class ListMatcher extends StringMatcher
ThisStringMatcher
tests whether strings match a given list ofStringMatcher
instances. The instances are considered sequentially. Each instance in the list can optionally be negated, meaning that a match makes the entire remaining match fail.
-
-
Constructor Summary
Constructors Constructor Description ListMatcher(StringMatcher... matchers)
ListMatcher(StringMatcher[] matchers, boolean[] negate)
-
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.-
Methods inherited from class proguard.util.StringMatcher
matches, prefix
-
-
-
-
Constructor Detail
-
ListMatcher
public ListMatcher(StringMatcher... matchers)
-
ListMatcher
public ListMatcher(StringMatcher[] matchers, boolean[] negate)
-
-
Method Detail
-
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.
-
-