com.xensource.xenapi
public static enum Types.StorageOperations extends java.lang.Enum<Types.StorageOperations>
Enum Constant and Description |
---|
DESTROY
Destroying the SR
|
FORGET
Forgetting about SR
|
PBD_CREATE
Creating a PBD for this SR
|
PBD_DESTROY
Destroying one of this SR's PBDs
|
PLUG
Plugging a PBD into this SR
|
SCAN
Scanning backends for new or deleted VDIs
|
UNPLUG
Unplugging a PBD from this SR
|
UNRECOGNIZED
The value does not belong to this enumeration
|
UPDATE
Refresh the fields on the SR
|
VDI_CLONE
Cloneing a VDI
|
VDI_CREATE
Creating a new VDI
|
VDI_DESTROY
Destroying a VDI
|
VDI_INTRODUCE
Introducing a new VDI
|
VDI_MIRROR
Mirroring a VDI
|
VDI_RESIZE
Resizing a VDI
|
VDI_SNAPSHOT
Snapshotting a VDI
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Types.StorageOperations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.StorageOperations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.StorageOperations UNRECOGNIZED
public static final Types.StorageOperations SCAN
public static final Types.StorageOperations DESTROY
public static final Types.StorageOperations FORGET
public static final Types.StorageOperations PLUG
public static final Types.StorageOperations UNPLUG
public static final Types.StorageOperations UPDATE
public static final Types.StorageOperations VDI_CREATE
public static final Types.StorageOperations VDI_INTRODUCE
public static final Types.StorageOperations VDI_DESTROY
public static final Types.StorageOperations VDI_RESIZE
public static final Types.StorageOperations VDI_CLONE
public static final Types.StorageOperations VDI_SNAPSHOT
public static final Types.StorageOperations VDI_MIRROR
public static final Types.StorageOperations PBD_CREATE
public static final Types.StorageOperations PBD_DESTROY
public static Types.StorageOperations[] values()
for (Types.StorageOperations c : Types.StorageOperations.values()) System.out.println(c);
public static Types.StorageOperations 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.StorageOperations>