public enum BlockDeviceIoStatus extends Enum<BlockDeviceIoStatus>
QApiEnumDescriptor{name=BlockDeviceIoStatus, data=[ok, failed, nospace], fields=null}
Modifier and Type | Method and Description |
---|---|
String |
getJsonValue() |
static BlockDeviceIoStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockDeviceIoStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockDeviceIoStatus ok
public static final BlockDeviceIoStatus failed
public static final BlockDeviceIoStatus nospace
public static final BlockDeviceIoStatus __UNKNOWN
public static BlockDeviceIoStatus[] values()
for (BlockDeviceIoStatus c : BlockDeviceIoStatus.values()) System.out.println(c);
public static BlockDeviceIoStatus 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 getJsonValue()