com.xensource.xenapi
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
|
DESTROY
Destroying the VDI
|
FORCE_UNLOCK
Forcibly unlocking the VDI
|
FORGET
Forget about the VDI
|
GENERATE_CONFIG
Generating static configuration
|
MIRROR
Mirroring the VDI
|
RESIZE
Resizing the VDI
|
RESIZE_ONLINE
Resizing the VDI which may or may not be online
|
SCAN
Scanning backends for new or deleted VDIs
|
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 SCAN
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 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>