public static enum Enums.ValueType extends java.lang.Enum<Enums.ValueType>
Enum Constant and Description |
---|
BOOLEAN
Boolean value (true or false).
|
CHOICE
Value from a discrete selection of values.
|
DOUBLE
Double value (decimal numbers).
|
INTEGER
Integer value (no decimal values).
|
UNKNOWN
Unknown value type.
|
Modifier and Type | Method and Description |
---|---|
static Enums.ValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Enums.ValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Enums.ValueType DOUBLE
public static final Enums.ValueType INTEGER
public static final Enums.ValueType BOOLEAN
public static final Enums.ValueType CHOICE
public static final Enums.ValueType UNKNOWN
public static Enums.ValueType[] values()
for (Enums.ValueType c : Enums.ValueType.values()) System.out.println(c);
public static Enums.ValueType 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