public enum NodeSourceStatus extends Enum<NodeSourceStatus>
Enum Constant and Description |
---|
NODES_DEPLOYED
A deployed node source means that the nodes acquisition of this node
source has been triggered.
|
NODES_UNDEPLOYED
An undeployed node source means that no node of the node source is
acquired, and that the node source activity does not exist,
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static NodeSourceStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeSourceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeSourceStatus NODES_DEPLOYED
public static final NodeSourceStatus NODES_UNDEPLOYED
public static NodeSourceStatus[] values()
for (NodeSourceStatus c : NodeSourceStatus.values()) System.out.println(c);
public static NodeSourceStatus 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 nullpublic String toString()
toString
in class Enum<NodeSourceStatus>