public enum ChoiceSetLayout extends Enum<ChoiceSetLayout>
| Enum Constant and Description |
|---|
CHOICE_SET_LAYOUT_LIST |
CHOICE_SET_LAYOUT_TILES |
| Modifier and Type | Method and Description |
|---|---|
static ChoiceSetLayout |
valueForString(String value) |
static ChoiceSetLayout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChoiceSetLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChoiceSetLayout CHOICE_SET_LAYOUT_LIST
public static final ChoiceSetLayout CHOICE_SET_LAYOUT_TILES
public static ChoiceSetLayout[] values()
for (ChoiceSetLayout c : ChoiceSetLayout.values()) System.out.println(c);
public static ChoiceSetLayout 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 static ChoiceSetLayout valueForString(String value)