public enum FormValueType extends java.lang.Enum<FormValueType>
Enum Constant and Description |
---|
Boolean |
Choice |
RangedInteger |
RangedInteger64 |
String |
Modifier and Type | Method and Description |
---|---|
static FormValueType |
fromValue(long v) |
static FormValueType |
fromValue(java.lang.String v) |
int |
value() |
static FormValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormValueType Boolean
public static final FormValueType String
public static final FormValueType Choice
public static final FormValueType RangedInteger
public static final FormValueType RangedInteger64
public static FormValueType[] values()
for (FormValueType c : FormValueType.values()) System.out.println(c);
public static FormValueType 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 nullpublic int value()
public static FormValueType fromValue(long v)
public static FormValueType fromValue(java.lang.String v)