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