|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Pattern in info.codesaway.util.regex |
---|
Fields in info.codesaway.util.regex declared as Pattern | |
---|---|
static Pattern |
Pattern.EMPTY_PATTERN
A pattern with the RegEx being the empty string |
static Pattern |
Pattern.Range.floatValue
|
Methods in info.codesaway.util.regex that return Pattern | |
---|---|
static Pattern |
Pattern.compile(java.lang.String regex)
Compiles the given regular expression into a pattern. |
static Pattern |
Pattern.compile(java.lang.String regex,
int flags)
Compiles the given regular expression into a pattern with the given flags. |
static Pattern |
Pattern.compile(java.lang.String regex,
PatternOptions... flags)
Compiles the given regular expression into a pattern with the given flags. |
Pattern |
Pattern.normalize()
Normalizes the pattern by inlining all possible flags. |
static Pattern |
Pattern.normalize(java.util.regex.Pattern pattern)
|
Pattern |
Pattern.or(java.lang.CharSequence regex)
|
Pattern |
Pattern.or(int flags)
|
Pattern |
Pattern.or(Pattern pattern)
|
Pattern |
Pattern.or(java.util.regex.Pattern pattern)
|
Pattern |
Pattern.or(PatternFlag flag)
|
Pattern |
Pattern.or(java.util.Set<PatternFlag> flags)
|
Pattern |
MatchResult.pattern()
Returns the pattern that is interpreted by this matcher. |
Pattern |
Matcher.pattern()
Returns the pattern that is interpreted by this matcher. |
Pattern |
Pattern.plus(java.lang.CharSequence regex)
|
Pattern |
Pattern.plus(Pattern pattern)
|
Pattern |
Pattern.plus(java.util.regex.Pattern pattern)
|
Pattern |
Pattern.positive()
Returns this Pattern . |
static Pattern |
Pattern.valueOf(java.util.regex.Pattern pattern)
|
Methods in info.codesaway.util.regex with parameters of type Pattern | |
---|---|
Pattern |
Pattern.or(Pattern pattern)
|
Pattern |
Pattern.plus(Pattern pattern)
|
Matcher |
Matcher.usePattern(Pattern newPattern)
Changes the Pattern that this Matcher uses to find matches with. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |