public enum GetOption extends Enum<GetOption>
| Enum Constant and Description |
|---|
MAESTRO_NOTE_OPT_GET_DS
Gets the data server address
|
| Modifier and Type | Method and Description |
|---|---|
static GetOption |
from(long value) |
long |
getValue() |
void |
setValue(long value) |
static GetOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GetOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GetOption MAESTRO_NOTE_OPT_GET_DS
public static GetOption[] values()
for (GetOption c : GetOption.values()) System.out.println(c);
public static GetOption valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic long getValue()
public void setValue(long value)
public static GetOption from(long value)
This documentation was released into the public domain.