public static enum QuadStateCheckBox.State extends Enum<QuadStateCheckBox.State>
Enum Constant and Description |
---|
NOT_SELECTED
Not selected: the property is explicitly switched off
|
PARTIAL
Partial: different selected objects have different values, do not change
|
SELECTED
Selected: the property is explicitly switched on
|
UNSET
Unset: do not set this property on the selected objects
|
Modifier and Type | Method and Description |
---|---|
static QuadStateCheckBox.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QuadStateCheckBox.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QuadStateCheckBox.State NOT_SELECTED
public static final QuadStateCheckBox.State SELECTED
public static final QuadStateCheckBox.State UNSET
public static final QuadStateCheckBox.State PARTIAL
public static QuadStateCheckBox.State[] values()
for (QuadStateCheckBox.State c : QuadStateCheckBox.State.values()) System.out.println(c);
public static QuadStateCheckBox.State 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