程序包 proguard.util
类 SettableMatcher
- java.lang.Object
-
- proguard.util.StringMatcher
-
- proguard.util.SettableMatcher
-
public class SettableMatcher extends StringMatcher
ThisStringMatcherdelegates to a anotherStringMatcherthat can be set after thisStringMatcherhas been constructed.
-
-
构造器概要
构造器 构造器 说明 SettableMatcher()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 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.voidsetMatcher(StringMatcher matcher)-
从类继承的方法 proguard.util.StringMatcher
matches
-
-
-
-
方法详细资料
-
setMatcher
public void setMatcher(StringMatcher matcher)
-
prefix
public java.lang.String prefix()
从类复制的说明:StringMatcherReturns a common prefix of all strings matched by thisStringMatcher. If the returned value is null, then thisStringMatcherdoes not match any string.- 覆盖:
prefix在类中StringMatcher
-
matches
protected boolean matches(java.lang.String string, int beginOffset, int endOffset)从类复制的说明:StringMatcherChecks whether the given substring matches.- 指定者:
matches在类中StringMatcher- 参数:
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.
-
-