public static enum TriStateCheckBox.State extends Enum<TriStateCheckBox.State>
Enum Constant and Description |
---|
DONT_CARE_NOT_SELECTED |
DONT_CARE_SELECTED |
NOT_SELECTED |
SELECTED |
Modifier and Type | Method and Description |
---|---|
static TriStateCheckBox.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriStateCheckBox.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriStateCheckBox.State NOT_SELECTED
public static final TriStateCheckBox.State SELECTED
public static final TriStateCheckBox.State DONT_CARE_SELECTED
public static final TriStateCheckBox.State DONT_CARE_NOT_SELECTED
public static TriStateCheckBox.State[] values()
for (TriStateCheckBox.State c : TriStateCheckBox.State.values()) System.out.println(c);
public static TriStateCheckBox.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 nullCopyright © 2023. All rights reserved.