public enum CloudImageState extends java.lang.Enum<CloudImageState>
Enum Constant and Description |
---|
Available
The image is avalable
|
Deleted
The image was deleted
|
Disabled
The image is disabled
|
Exporting
The image is in the process of exporting
|
Importing
The image is in the process of importing
|
Invalid
Invalid state
|
Provisioning
The image is in the process of provisioning
|
Modifier and Type | Method and Description |
---|---|
static CloudImageState |
fromValue(long v) |
static CloudImageState |
fromValue(java.lang.String v) |
int |
value() |
static CloudImageState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CloudImageState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CloudImageState Invalid
public static final CloudImageState Provisioning
public static final CloudImageState Importing
public static final CloudImageState Available
public static final CloudImageState Exporting
public static final CloudImageState Disabled
public static final CloudImageState Deleted
public static CloudImageState[] values()
for (CloudImageState c : CloudImageState.values()) System.out.println(c);
public static CloudImageState 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 CloudImageState fromValue(long v)
public static CloudImageState fromValue(java.lang.String v)