public static enum Types.VbdOperations extends Enum<Types.VbdOperations>
Enum Constant and Description |
---|
ATTACH
Attempting to attach this VBD to a VM
|
EJECT
Attempting to eject the media from this VBD
|
INSERT
Attempting to insert new media into this VBD
|
PAUSE
Attempting to pause a block device backend
|
PLUG
Attempting to hotplug this VBD
|
UNPAUSE
Attempting to unpause a block device backend
|
UNPLUG
Attempting to hot unplug this VBD
|
UNPLUG_FORCE
Attempting to forcibly unplug this VBD
|
UNRECOGNIZED
The value does not belong to this enumeration
|
Modifier and Type | Method and Description |
---|---|
static Types.VbdOperations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Types.VbdOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.VbdOperations UNRECOGNIZED
public static final Types.VbdOperations ATTACH
public static final Types.VbdOperations EJECT
public static final Types.VbdOperations INSERT
public static final Types.VbdOperations PLUG
public static final Types.VbdOperations UNPLUG
public static final Types.VbdOperations UNPLUG_FORCE
public static final Types.VbdOperations PAUSE
public static final Types.VbdOperations UNPAUSE
public static Types.VbdOperations[] values()
for (Types.VbdOperations c : Types.VbdOperations.values()) System.out.println(c);
public static Types.VbdOperations 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 null