public enum CheckboxMode extends Enum<CheckboxMode>
| Modifier and Type | Method and Description |
|---|---|
static CheckboxMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckboxMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckboxMode CHECKBOX
public static final CheckboxMode SWITCH
public static CheckboxMode[] values()
for (CheckboxMode c : CheckboxMode.values()) System.out.println(c);
public static CheckboxMode 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 nullCopyright © 2019 Open Circle Solutions. All rights reserved.