protected static enum AstExpression.ExpressionType extends Enum<AstExpression.ExpressionType>
Enum Constant and Description |
---|
BINARY_EXPRESSION |
COLUMN_REFERENCE |
NULL_LITERAL |
UNARY_EXPRESSION |
VALID_LITERAL |
Modifier and Type | Method and Description |
---|---|
static AstExpression.ExpressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AstExpression.ExpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AstExpression.ExpressionType VALID_LITERAL
public static final AstExpression.ExpressionType NULL_LITERAL
public static final AstExpression.ExpressionType COLUMN_REFERENCE
public static final AstExpression.ExpressionType UNARY_EXPRESSION
public static final AstExpression.ExpressionType BINARY_EXPRESSION
public static AstExpression.ExpressionType[] values()
for (AstExpression.ExpressionType c : AstExpression.ExpressionType.values()) System.out.println(c);
public static AstExpression.ExpressionType 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 © 2024. All rights reserved.