public enum ExprPrecedenceEnum extends Enum<ExprPrecedenceEnum>
Enum Constant and Description |
---|
ADDITIVE
Precedence.
|
AND
Precedence.
|
BITWISE
Precedence.
|
CASE
Precedence.
|
CONCAT
Precedence.
|
EQUALS
Precedence.
|
MINIMUM
Precedence.
|
MULTIPLY
Precedence.
|
NEGATED
Precedence.
|
OR
Precedence.
|
RELATIONAL_BETWEEN_IN
Precedence.
|
UNARY
Precedence.
|
Modifier and Type | Method and Description |
---|---|
int |
getLevel()
Level.
|
static ExprPrecedenceEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExprPrecedenceEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExprPrecedenceEnum UNARY
public static final ExprPrecedenceEnum MULTIPLY
public static final ExprPrecedenceEnum ADDITIVE
public static final ExprPrecedenceEnum CONCAT
public static final ExprPrecedenceEnum RELATIONAL_BETWEEN_IN
public static final ExprPrecedenceEnum EQUALS
public static final ExprPrecedenceEnum NEGATED
public static final ExprPrecedenceEnum BITWISE
public static final ExprPrecedenceEnum AND
public static final ExprPrecedenceEnum OR
public static final ExprPrecedenceEnum CASE
public static final ExprPrecedenceEnum MINIMUM
public static ExprPrecedenceEnum[] values()
for (ExprPrecedenceEnum c : ExprPrecedenceEnum.values()) System.out.println(c);
public static ExprPrecedenceEnum 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()