public static enum LiteralExpression.Type extends java.lang.Enum<LiteralExpression.Type>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
DATE_TIME |
DOUBLE |
DURATION |
INTEGER |
NULL |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static LiteralExpression.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LiteralExpression.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LiteralExpression.Type BOOLEAN
public static final LiteralExpression.Type DATE
public static final LiteralExpression.Type DATE_TIME
public static final LiteralExpression.Type DOUBLE
public static final LiteralExpression.Type DURATION
public static final LiteralExpression.Type INTEGER
public static final LiteralExpression.Type NULL
public static final LiteralExpression.Type STRING
public static LiteralExpression.Type[] values()
for (LiteralExpression.Type c : LiteralExpression.Type.values()) System.out.println(c);
public static LiteralExpression.Type 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 null