public enum AddOnOptionType extends java.lang.Enum<AddOnOptionType>
| Enum Constant and Description |
|---|
BOOLEAN
A boolean value.
|
FLOAT
A floating point decimal number.
|
INTEGER
A number without decimal places.
|
STRING
A text value.
|
| Modifier and Type | Method and Description |
|---|---|
static AddOnOptionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddOnOptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddOnOptionType INTEGER
public static final AddOnOptionType FLOAT
public static final AddOnOptionType STRING
public static final AddOnOptionType BOOLEAN
public static AddOnOptionType[] values()
for (AddOnOptionType c : AddOnOptionType.values()) System.out.println(c);
public static AddOnOptionType 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