Uses of Class
info.codesaway.util.regex.Pattern

Uses of Pattern in info.codesaway.util.regex
 

Methods in info.codesaway.util.regex that return Pattern
static Pattern Pattern.compile(String regex)
          Compiles the given regular expression into a pattern.
static Pattern Pattern.compile(String regex, int flags)
          Compiles the given regular expression into a pattern with the given flags.
 Pattern Matcher.pattern()
          Returns the pattern that is interpreted by this matcher.
 

Methods in info.codesaway.util.regex with parameters of type Pattern
 Matcher Matcher.usePattern(Pattern newPattern)
          Changes the Pattern that this Matcher uses to find matches with.