public static enum Expression.ExpressionFlag extends java.lang.Enum<Expression.ExpressionFlag>
| Enum Constant and Description |
|---|
IS_DOT_LEFT_OPERAND_ID
the expression is identifier which is dot left operand
|
IS_DOT_RIGHT_OPERAND_ID
the expression is identifier which is dot right operand
|
IS_EXPLICIT
the explicit keyword was before expression in the source
|
IS_TOP_LEVEL_DOT
the expression is top level dot operator
|
NONE
no flag
|
| Modifier and Type | Method and Description |
|---|---|
static Expression.ExpressionFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Expression.ExpressionFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expression.ExpressionFlag NONE
public static final Expression.ExpressionFlag IS_EXPLICIT
public static final Expression.ExpressionFlag IS_TOP_LEVEL_DOT
public static final Expression.ExpressionFlag IS_DOT_RIGHT_OPERAND_ID
public static final Expression.ExpressionFlag IS_DOT_LEFT_OPERAND_ID
public static Expression.ExpressionFlag[] values()
for (Expression.ExpressionFlag c : Expression.ExpressionFlag.values()) System.out.println(c);
public static Expression.ExpressionFlag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullLast updated 2024-10-29 12:52:38