|
APTCONVERT 1.1 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface REFactory
An abstraction of a regular expression engine.
Field Summary | |
---|---|
static int |
CASE_INSENSITIVE
Matching should be case-insensitive. |
static int |
MULTI_LINE
Newlines should match as ^ and $. |
static int |
SINGLE_LINE
Newlines are matched by .. |
Method Summary | |
---|---|
RE |
createRE(java.lang.String pattern,
int options)
Compiles the specified pattern into a regular expression matcher. |
Field Detail |
---|
static final int CASE_INSENSITIVE
static final int MULTI_LINE
static final int SINGLE_LINE
Method Detail |
---|
RE createRE(java.lang.String pattern, int options) throws RESyntaxException
pattern
- the pattern to compileoptions
- one or more (OR-ed) flags parameterizing matching
behaviour: CASE_INSENSITIVE, MULTI_LINE, SINGLE_LINE
RESyntaxException
- if the pattern contains syntax errors
|
APTCONVERT 1.1 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |