public enum CloudMachineState extends java.lang.Enum<CloudMachineState>
{67B6D054-0154-4F5D-B71B-6AC406E1FF78}
Enum Constant and Description |
---|
CreatingImage
The machine is in the process of creating image
|
Invalid
Invalid state
|
Provisioning
The machine is in the process of provisioning
|
Running
The machine runs
|
Starting
The machine is in the process of starting
|
Stopped
The machine was stopped
|
Stopping
The machine is in the process of stopping
|
Terminated
The machine was terminated
|
Terminating
The machine is in the process of terminating
|
Modifier and Type | Method and Description |
---|---|
static CloudMachineState |
fromValue(long v) |
static CloudMachineState |
fromValue(java.lang.String v) |
int |
value() |
static CloudMachineState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CloudMachineState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudMachineState Invalid
public static final CloudMachineState Provisioning
public static final CloudMachineState Running
public static final CloudMachineState Starting
public static final CloudMachineState Stopping
public static final CloudMachineState Stopped
public static final CloudMachineState CreatingImage
public static final CloudMachineState Terminating
public static final CloudMachineState Terminated
public static CloudMachineState[] values()
for (CloudMachineState c : CloudMachineState.values()) System.out.println(c);
public static CloudMachineState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int value()
public static CloudMachineState fromValue(long v)
public static CloudMachineState fromValue(java.lang.String v)