public enum OptionType extends java.lang.Enum<OptionType>
PUT
or CALL
Modifier and Type | Method and Description |
---|---|
static OptionType |
fromValue(java.lang.String value)
Returns an element of the enumeration by its value.
|
java.lang.String |
getValue()
Gets the underlying value of this type safe enumeration.
|
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 CALL
public static final OptionType PUT
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 static OptionType fromValue(java.lang.String value)
value
- the value.