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