public static enum CheckBoxTree.State extends Enum<CheckBoxTree.State>
| Enum Constant and Description |
|---|
MIXED
The node is in a mixed state, meaning that some
of its children are selected and some are not
selected
|
SELECTED
The node is selected
|
UNSELECTED
The node is unselected
|
| Modifier and Type | Method and Description |
|---|---|
static CheckBoxTree.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckBoxTree.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckBoxTree.State SELECTED
public static final CheckBoxTree.State UNSELECTED
public static final CheckBoxTree.State MIXED
public static CheckBoxTree.State[] values()
for (CheckBoxTree.State c : CheckBoxTree.State.values()) System.out.println(c);
public static CheckBoxTree.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 © 2022. All rights reserved.