public static enum DynamicExpression.Type extends Enum<DynamicExpression.Type>
| Modifier and Type | Field and Description |
|---|---|
static List<DynamicExpression.Type> |
numericTypes |
| Modifier and Type | Method and Description |
|---|---|
static DynamicExpression.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamicExpression.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicExpression.Type INT
public static final DynamicExpression.Type LONG
public static final DynamicExpression.Type FLOAT
public static final DynamicExpression.Type DOUBLE
public static final DynamicExpression.Type BOOLEAN
public static final List<DynamicExpression.Type> numericTypes
public static DynamicExpression.Type[] values()
for (DynamicExpression.Type c : DynamicExpression.Type.values()) System.out.println(c);
public static DynamicExpression.Type 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 © 2014. All Rights Reserved.