Uses of Class
com.google.re2j.RE2

  • Uses of RE2 in com.google.re2j

    Fields in com.google.re2j declared as RE2
    Modifier and Type
    Field
    Description
    private RE2
    Machine.re2
     
    private final RE2
    Pattern.re2
     
    Methods in com.google.re2j that return RE2
    Modifier and Type
    Method
    Description
    (package private) static RE2
    RE2.compile(String expr)
    Parses a regular expression and returns, if successful, an RE2 instance that can be used to match against text.
    (package private) static RE2
    RE2.compileImpl(String expr, int mode, boolean longest)
     
    (package private) static RE2
    RE2.compilePOSIX(String expr)
    compilePOSIX is like RE2.compile(String) but restricts the regular expression to POSIX ERE (egrep) syntax and changes the match semantics to leftmost-longest.
    (package private) RE2
    Pattern.re2()
     
    Methods in com.google.re2j with parameters of type RE2
    Modifier and Type
    Method
    Description
    (package private) abstract int
    MachineInput.index(RE2 re2, int pos)
     
    (package private) int
    MachineInput.UTF16Input.index(RE2 re2, int pos)
     
    (package private) int
    MachineInput.UTF8Input.index(RE2 re2, int pos)
     
    Constructors in com.google.re2j with parameters of type RE2
    Modifier
    Constructor
    Description
    (package private)
    Machine(RE2 re2)
    Constructs a matching Machine for the specified RE2.
    (package private)
    Pattern(String pattern, int flags, RE2 re2)