程序包 proguard.util
类 VariableStringMatcher
- java.lang.Object
-
- proguard.util.StringMatcher
-
- proguard.util.VariableStringMatcher
-
public class VariableStringMatcher extends StringMatcher
ThisStringMatchertests whether strings start with a specified variable string and then match another optional givenStringMatcher.
-
-
构造器概要
构造器 构造器 说明 VariableStringMatcher(char[] allowedCharacters, char[] disallowedCharacters, int minimumLength, int maximumLength, StringMatcher nextMatcher)Creates a new VariableStringMatcher.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 java.lang.StringgetMatchingString()Returns the string that has been matched most recently.protected booleanmatches(java.lang.String string, int beginOffset, int endOffset)Checks whether the given substring matches.-
从类继承的方法 proguard.util.StringMatcher
matches, prefix
-
-
-
-
构造器详细资料
-
VariableStringMatcher
public VariableStringMatcher(char[] allowedCharacters, char[] disallowedCharacters, int minimumLength, int maximumLength, StringMatcher nextMatcher)Creates a new VariableStringMatcher.- 参数:
allowedCharacters- an optional list of allowed characters.disallowedCharacters- an optional list of disallowed characters.minimumLength- the minimum length of te variable string.maximumLength- the maximum length of te variable string.nextMatcher- an optional next matcher for the remainder of the string.
-
-
方法详细资料
-
getMatchingString
public java.lang.String getMatchingString()
Returns the string that has been matched most recently.
-
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.
-
-