Uses of Class
org.apache.oro.text.regex.MalformedPatternException

Packages that use MalformedPatternException
  • Uses of MalformedPatternException in org.apache.oro.text

    Modifier and Type
    Method
    Description
    (package private) final Pattern
    GenericPatternCache.addPattern(String expression)
    Same as calling
    final Pattern
    GenericPatternCache.addPattern(String expression, int options)
    Adds a pattern to the cache and returns the compiled pattern.
    PatternCache.addPattern(String expression, int options)
    Adds a pattern to the cache and returns the compiled pattern.
  • Uses of MalformedPatternException in org.apache.oro.text.regex

    Modifier and Type
    Method
    Description
    private int
    Perl5Compiler.__parseAlternation(int[] retFlags)
     
    private int
    Perl5Compiler.__parseAtom(int[] retFlags)
     
    private int
    Perl5Compiler.__parseBranch(int[] retFlags)
     
    private int
    Perl5Compiler.__parseExpression(boolean isParenthesized, int[] hintFlags)
     
    private int
    Perl5Compiler.__parseUnicodeClass()
     
    PatternCompiler.compile(char[] pattern)
    Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.
    PatternCompiler.compile(char[] pattern, int options)
    Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.
    PatternCompiler.compile(String pattern)
    Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.
    PatternCompiler.compile(String pattern, int options)
    Compiles a regular expression into a data structure that can be used by a PatternMatcher implementation to perform pattern matching.
    Perl5Compiler.compile(char[] pattern)
    Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);
    Perl5Compiler.compile(char[] pattern, int options)
    Compiles a Perl5 regular expression into a Perl5Pattern instance that can be used by a Perl5Matcher object to perform pattern matching.
    Perl5Compiler.compile(String pattern)
    Same as calling compile(pattern, Perl5Compiler.DEFAULT_MASK);
    Perl5Compiler.compile(String pattern, int options)
    Compiles a Perl5 regular expression into a Perl5Pattern instance that can be used by a Perl5Matcher object to perform pattern matching.