public enum NodeState extends Enum<NodeState>
ChartNode
within its owning tree.Enum Constant and Description |
---|
INITIAL
Depicts the initial state of a
ChartNode and is initialized when the node is being created. |
LOADED
The
ChartNode has been loaded and is ready to be visualized. |
LOADING
Depicts the process of loading the
ChartNode into the chart tree. |
UNLOADED
The
ChartNode has been detached from the chart tree. |
UNLOADING
The
ChartNode is in process of being unloaded from the chart tree. |
Modifier and Type | Method and Description |
---|---|
static NodeState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeState INITIAL
ChartNode
and is initialized when the node is being created.public static final NodeState LOADING
ChartNode
into the chart tree.public static final NodeState LOADED
ChartNode
has been loaded and is ready to be visualized.public static final NodeState UNLOADING
ChartNode
is in process of being unloaded from the chart tree.public static NodeState[] values()
for (NodeState c : NodeState.values()) System.out.println(c);
public static NodeState 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