public static enum Types.VdiOperations extends java.lang.Enum<Types.VdiOperations>
Enum Constant and Description |
---|
BLOCKED
Operations on this VDI are temporarily blocked
|
CLONE
Cloning the VDI
|
COPY
Copying the VDI
|
DATA_DESTROY
Deleting the data of the VDI
|
DESTROY
Destroying the VDI
|
DISABLE_CBT
Disabling changed block tracking for a VDI
|
ENABLE_CBT
Enabling changed block tracking for a VDI
|
FORCE_UNLOCK
Forcibly unlocking the VDI
|
FORGET
Forget about the VDI
|
GENERATE_CONFIG
Generating static configuration
|
LIST_CHANGED_BLOCKS
Exporting a bitmap that shows the changed blocks between two VDIs
|
MIRROR
Mirroring the VDI
|
RESIZE
Resizing the VDI
|
RESIZE_ONLINE
Resizing the VDI which may or may not be online
|
SET_ON_BOOT
Setting the on_boot field of the VDI
|
SNAPSHOT
Snapshotting the VDI
|
UNRECOGNIZED
The value does not belong to this enumeration
|
UPDATE
Refreshing the fields of the VDI
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Types.VdiOperations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.VdiOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.VdiOperations UNRECOGNIZED
public static final Types.VdiOperations CLONE
public static final Types.VdiOperations COPY
public static final Types.VdiOperations RESIZE
public static final Types.VdiOperations RESIZE_ONLINE
public static final Types.VdiOperations SNAPSHOT
public static final Types.VdiOperations MIRROR
public static final Types.VdiOperations DESTROY
public static final Types.VdiOperations FORGET
public static final Types.VdiOperations UPDATE
public static final Types.VdiOperations FORCE_UNLOCK
public static final Types.VdiOperations GENERATE_CONFIG
public static final Types.VdiOperations ENABLE_CBT
public static final Types.VdiOperations DISABLE_CBT
public static final Types.VdiOperations DATA_DESTROY
public static final Types.VdiOperations LIST_CHANGED_BLOCKS
public static final Types.VdiOperations SET_ON_BOOT
public static final Types.VdiOperations BLOCKED
public static Types.VdiOperations[] values()
for (Types.VdiOperations c : Types.VdiOperations.values()) System.out.println(c);
public static Types.VdiOperations 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 java.lang.String toString()
toString
in class java.lang.Enum<Types.VdiOperations>