public enum VolumeState extends Enum<VolumeState>
Enum Constant and Description |
---|
Available |
Creating |
Deleted |
Deleting |
Error |
InUse |
Modifier and Type | Method and Description |
---|---|
static VolumeState |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static VolumeState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VolumeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VolumeState Creating
public static final VolumeState Available
public static final VolumeState InUse
public static final VolumeState Deleting
public static final VolumeState Deleted
public static final VolumeState Error
public static VolumeState[] values()
for (VolumeState c : VolumeState.values()) System.out.println(c);
public static VolumeState 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<VolumeState>
public static VolumeState fromValue(String value)
value
- real valueCopyright © 2010–2020. All rights reserved.