public enum OptionType extends java.lang.Enum<OptionType>
| Enum Constant and Description |
|---|
ACTIONS |
DYNAMIC |
HTML |
JSON |
REDIRECT |
| Modifier and Type | Method and Description |
|---|---|
static OptionType |
fromValue(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static OptionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionType HTML
public static final OptionType JSON
public static final OptionType REDIRECT
public static final OptionType DYNAMIC
public static final OptionType ACTIONS
public static OptionType[] values()
for (OptionType c : OptionType.values()) System.out.println(c);
public static OptionType 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 java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<OptionType>public static OptionType fromValue(java.lang.String value)