| java.lang.Object org.radeox.regex.Compiler
All known Subclasses: org.radeox.regex.JdkCompiler,
Compiler | abstract public class Compiler (Code) | | |
compile | abstract public Pattern compile(String regex)(Code) | | Compile a String regular expression to a regex pattern
Parameters: regex - String representation of a regular expression Compiled regular expression |
create | public static Compiler create()(Code) | | Create a new Compiler object depending on the used implementation
Compiler object with the used implementation |
setMultiline | abstract public void setMultiline(boolean multiline)(Code) | | Whether the compiler should create multiline patterns or single line
patterns.
Parameters: multiline - True if the pattern is multiline, otherwise false |
|
|