public static enum RegExp.Kind extends Enum<RegExp.Kind>
Enum Constant and Description |
---|
REGEXP_ANYCHAR
Any Character allowed
|
REGEXP_ANYSTRING
Any string allowed
|
REGEXP_AUTOMATON
An Automaton expression
|
REGEXP_CHAR
A Character
|
REGEXP_CHAR_RANGE
A Character range
|
REGEXP_COMPLEMENT
The complement of an expression
|
REGEXP_CONCATENATION
A sequence of two expressions
|
REGEXP_EMPTY
An empty expression
|
REGEXP_INTERSECTION
The intersection of two expressions
|
REGEXP_INTERVAL
An Interval expression
|
REGEXP_OPTIONAL
An optional expression
|
REGEXP_REPEAT
An expression that repeats
|
REGEXP_REPEAT_MIN
An expression that repeats a minimum number of times
|
REGEXP_REPEAT_MINMAX
An expression that repeats a minimum and maximum number of times
|
REGEXP_STRING
A string expression
|
REGEXP_UNION
The union of two expressions
|
Modifier and Type | Method and Description |
---|---|
static RegExp.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegExp.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegExp.Kind REGEXP_UNION
public static final RegExp.Kind REGEXP_CONCATENATION
public static final RegExp.Kind REGEXP_INTERSECTION
public static final RegExp.Kind REGEXP_OPTIONAL
public static final RegExp.Kind REGEXP_REPEAT
public static final RegExp.Kind REGEXP_REPEAT_MIN
public static final RegExp.Kind REGEXP_REPEAT_MINMAX
public static final RegExp.Kind REGEXP_COMPLEMENT
public static final RegExp.Kind REGEXP_CHAR
public static final RegExp.Kind REGEXP_CHAR_RANGE
public static final RegExp.Kind REGEXP_ANYCHAR
public static final RegExp.Kind REGEXP_EMPTY
public static final RegExp.Kind REGEXP_STRING
public static final RegExp.Kind REGEXP_ANYSTRING
public static final RegExp.Kind REGEXP_AUTOMATON
public static final RegExp.Kind REGEXP_INTERVAL
public static RegExp.Kind[] values()
for (RegExp.Kind c : RegExp.Kind.values()) System.out.println(c);
public static RegExp.Kind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.