程序包 proguard.util
类 StringMatcher
- java.lang.Object
-
- proguard.util.StringMatcher
-
- 直接已知子类:
AndMatcher,CollectionMatcher,ConstantMatcher,EmptyStringMatcher,ExtensionMatcher,FixedStringMatcher,ListMatcher,MatchedStringMatcher,NotMatcher,OrMatcher,SettableMatcher,TransformedStringMatcher,VariableStringMatcher
public abstract class StringMatcher extends java.lang.ObjectThis abstract class provides methods to determine whether strings match a given criterion, which is specified by the implementation.
-
-
构造器概要
构造器 构造器 说明 StringMatcher()
-
方法概要
所有方法 实例方法 抽象方法 具体方法 修饰符和类型 方法 说明 booleanmatches(java.lang.String string)Checks whether the given string matches.protected abstract 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.
-
-
-
方法详细资料
-
matches
public boolean matches(java.lang.String string)
Checks whether the given string matches.- 参数:
string- the string to match.- 返回:
- a boolean indicating whether the string matches the criterion.
-
prefix
public java.lang.String prefix()
Returns a common prefix of all strings matched by thisStringMatcher. If the returned value is null, then thisStringMatcherdoes not match any string.
-
matches
protected abstract boolean matches(java.lang.String string, int beginOffset, int endOffset)Checks whether the given substring matches.- 参数:
string- the string to match.beginOffset- the start offset of the substring (inclusive).endOffset- the end offset of the substring (exclusive).- 返回:
- a boolean indicating whether the substring matches the criterion.
-
-