static AbstractMatcher |
MatcherConstructor.contains(java.lang.String matcher) |
Create a matcher for a containing string
|
static AbstractMatcher |
MatcherConstructor.contains(java.util.regex.Pattern pattern) |
Create a matcher for a containing pattern
|
static AbstractMatcher |
MatcherConstructor.endsWith(java.lang.String matcher) |
Create a matcher filtering by a string that ends with the matcher
|
static AbstractMatcher |
MatcherConstructor.endsWith(java.util.regex.Pattern pattern) |
Create a matcher filtering by a string that ends with the pattern
|
static AbstractMatcher |
MatcherConstructor.equal(java.lang.String matcher) |
Create a matcher to equal the string matcher
|
AbstractMatcher |
AttributeFilter.getMatcher() |
Get the matcher of this filter
|
static AbstractMatcher |
MatcherConstructor.notContains(java.lang.String matcher) |
Create a matcher for not containing a string
|
static AbstractMatcher |
MatcherConstructor.notContains(java.util.regex.Pattern pattern) |
Create a matcher for not containing the pattern
|
static AbstractMatcher |
MatcherConstructor.notEndsWith(java.lang.String matcher) |
Create a matcher filtering by a string that not ends with the string params
|
static AbstractMatcher |
MatcherConstructor.notEndsWith(java.util.regex.Pattern pattern) |
Create a matcher filtering by a string that not ends with the pattern params
|
static AbstractMatcher |
MatcherConstructor.notStartsWith(java.lang.String matcher) |
Create a matcher filtering by a string that not starts with the string params
|
static AbstractMatcher |
MatcherConstructor.notStartsWith(java.util.regex.Pattern pattern) |
Create a matcher filtering by a string that not starts with the pattern params
|
static AbstractMatcher |
MatcherConstructor.startsWith(java.lang.String matcher) |
Create a matcher filtering by a string that start with the matcher
|
static AbstractMatcher |
MatcherConstructor.startsWith(java.util.regex.Pattern pattern) |
Create a matcher filtering by a string that start with the matcher
|