public enum SelectOption extends java.lang.Enum<SelectOption>
Modifier and Type | Method and Description |
---|---|
byte |
getValue() |
static SelectOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SelectOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectOption Disable
public static final SelectOption EPC
public static final SelectOption TID
public static final SelectOption USER
public static SelectOption[] values()
for (SelectOption c : SelectOption.values()) System.out.println(c);
public static SelectOption 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 byte getValue()