gnu.regexp
public final class UncheckedRE extends RE
Note that this makes UncheckedRE dangerous if constructed with dynamic data. Do not use UncheckedRE unless you are completely sure that all input being passed to it contains valid, well-formed regular expressions for the syntax specified.
Since: gnu.regexp 1.1.4
See Also: RE
Constructor Summary | |
---|---|
UncheckedRE(Object pattern)
Constructs a regular expression pattern buffer without any compilation
flags set, and using the default syntax (RESyntax.RE_SYNTAX_PERL5).
| |
UncheckedRE(Object pattern, int cflags)
Constructs a regular expression pattern buffer using the specified
compilation flags and the default syntax (RESyntax.RE_SYNTAX_PERL5).
| |
UncheckedRE(Object pattern, int cflags, RESyntax syntax)
Constructs a regular expression pattern buffer using the specified
compilation flags and regular expression syntax.
|
Parameters: pattern A regular expression pattern, in the form of a String, StringBuffer or char[]. Other input types will be converted to strings using the toString() method.
Throws: RuntimeException The input pattern could not be parsed. NullPointerException The pattern was null.
Parameters: pattern A regular expression pattern, in the form of a String, StringBuffer, or char[]. Other input types will be converted to strings using the toString() method. cflags The logical OR of any combination of the compilation flags in the RE class.
Throws: RuntimeException The input pattern could not be parsed. NullPointerException The pattern was null.
Parameters: pattern A regular expression pattern, in the form of a String, StringBuffer, or char[]. Other input types will be converted to strings using the toString() method. cflags The logical OR of any combination of the compilation flags in the RE class. syntax The type of regular expression syntax to use.
Throws: RuntimeException The input pattern could not be parsed. NullPointerException The pattern was null.