public enum RowRegexExprNodePrecedenceEnum extends Enum<RowRegexExprNodePrecedenceEnum>
Enum Constant and Description |
---|
ALTERNATION
Precedence.
|
CONCATENATION
Precedence.
|
GROUPING
Precedence.
|
MINIMUM
Precedence.
|
UNARY
Precedence.
|
Modifier and Type | Method and Description |
---|---|
int |
getLevel()
Level.
|
static RowRegexExprNodePrecedenceEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RowRegexExprNodePrecedenceEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RowRegexExprNodePrecedenceEnum UNARY
public static final RowRegexExprNodePrecedenceEnum GROUPING
public static final RowRegexExprNodePrecedenceEnum CONCATENATION
public static final RowRegexExprNodePrecedenceEnum ALTERNATION
public static final RowRegexExprNodePrecedenceEnum MINIMUM
public static RowRegexExprNodePrecedenceEnum[] values()
for (RowRegexExprNodePrecedenceEnum c : RowRegexExprNodePrecedenceEnum.values()) System.out.println(c);
public static RowRegexExprNodePrecedenceEnum 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 nullpublic int getLevel()