@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum NodeUpdateStatus extends Enum<NodeUpdateStatus>
Enum Constant and Description |
---|
Complete |
InProgress |
NotApplied |
Stopped |
Stopping |
WaitingToStart |
Modifier and Type | Method and Description |
---|---|
static NodeUpdateStatus |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static NodeUpdateStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeUpdateStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeUpdateStatus NotApplied
public static final NodeUpdateStatus WaitingToStart
public static final NodeUpdateStatus InProgress
public static final NodeUpdateStatus Stopping
public static final NodeUpdateStatus Stopped
public static final NodeUpdateStatus Complete
public static NodeUpdateStatus[] values()
for (NodeUpdateStatus c : NodeUpdateStatus.values()) System.out.println(c);
public static NodeUpdateStatus 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<NodeUpdateStatus>
public static NodeUpdateStatus fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.