public enum AutoChoices extends Enum<AutoChoices>
| Enum Constant and Description |
|---|
DISABLED
No auto choices, any choices must be explicitly inserted.
|
ENABLED
Choices extracted from the model, it is guaranteed that the choices
include all the model's values, and only those.
|
ENUMS
Enumerations and booleans automatically handled.
|
| Modifier and Type | Method and Description |
|---|---|
static AutoChoices |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoChoices[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoChoices DISABLED
public static final AutoChoices ENUMS
public static final AutoChoices ENABLED
public static AutoChoices[] values()
for (AutoChoices c : AutoChoices.values()) System.out.println(c);
public static AutoChoices 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 null