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