Uses of Class
org.apache.regexp.RESyntaxException

  • Uses of RESyntaxException in org.apache.regexp

    Methods in org.apache.regexp that throw RESyntaxException
    Modifier and Type
    Method
    Description
    (package private) int
    RECompiler.atom()
    Absorb an atomic character string.
    (package private) void
    RECompiler.bracket()
    Match bracket {m,n} expression put results in bracket member variables
    (package private) int
    RECompiler.branch(int[] flags)
    Compile body of one branch of an or operator (implements concatenation)
    (package private) int
    RECompiler.characterClass()
    Compile a character class
    (package private) int
    RECompiler.closure(int[] flags)
    Compile a possibly closured terminal
    RECompiler.compile(String pattern)
    Compiles a regular expression pattern into a program runnable by the pattern matcher class 'RE'.
    static RE
    REUtil.createRE(String expression)
    Creates a regular expression, permitting simple or complex syntax
    static RE
    REUtil.createRE(String expression, int matchFlags)
    Creates a regular expression, permitting simple or complex syntax
    (package private) int
    RECompiler.escape()
    Match an escape sequence.
    (package private) int
    RECompiler.expr(int[] flags)
    Compile an expression with possible parens around it.
    (package private) void
    RECompiler.syntaxError(String s)
    Throws a new syntax error exception
    (package private) int
    RECompiler.terminal(int[] flags)
    Match a terminal node.
    Constructors in org.apache.regexp that throw RESyntaxException
    Modifier
    Constructor
    Description
     
    RE(String pattern)
    Constructs a regular expression matcher from a String by compiling it using a new instance of RECompiler.
     
    RE(String pattern, int matchFlags)
    Constructs a regular expression matcher from a String by compiling it using a new instance of RECompiler.