java.io.Serializable, java.lang.Comparable<AutoChoices>public enum AutoChoices extends java.lang.Enum<AutoChoices>
| Enum Constant | 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 | Description |
|---|---|---|
static AutoChoices |
valueOf(java.lang.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(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 nullCopyright © 2018 coderazzi. All Rights Reserved.