Enum Class Types.VdiOperations

java.lang.Object
java.lang.Enum<Types.VdiOperations>
com.xensource.xenapi.Types.VdiOperations
All Implemented Interfaces:
Serializable, Comparable<Types.VdiOperations>, Constable
Enclosing class:
Types

public static enum Types.VdiOperations extends Enum<Types.VdiOperations>
  • Enum Constant Details

    • UNRECOGNIZED

      public static final Types.VdiOperations UNRECOGNIZED
      The value does not belong to this enumeration
    • CLONE

      public static final Types.VdiOperations CLONE
      Cloning the VDI
    • COPY

      public static final Types.VdiOperations COPY
      Copying the VDI
    • RESIZE

      public static final Types.VdiOperations RESIZE
      Resizing the VDI
    • RESIZE_ONLINE

      public static final Types.VdiOperations RESIZE_ONLINE
      Resizing the VDI which may or may not be online
    • SNAPSHOT

      public static final Types.VdiOperations SNAPSHOT
      Snapshotting the VDI
    • MIRROR

      public static final Types.VdiOperations MIRROR
      Mirroring the VDI
    • DESTROY

      public static final Types.VdiOperations DESTROY
      Destroying the VDI
    • FORGET

      public static final Types.VdiOperations FORGET
      Forget about the VDI
    • UPDATE

      public static final Types.VdiOperations UPDATE
      Refreshing the fields of the VDI
    • FORCE_UNLOCK

      public static final Types.VdiOperations FORCE_UNLOCK
      Forcibly unlocking the VDI
    • GENERATE_CONFIG

      public static final Types.VdiOperations GENERATE_CONFIG
      Generating static configuration
    • ENABLE_CBT

      public static final Types.VdiOperations ENABLE_CBT
      Enabling changed block tracking for a VDI
    • DISABLE_CBT

      public static final Types.VdiOperations DISABLE_CBT
      Disabling changed block tracking for a VDI
    • DATA_DESTROY

      public static final Types.VdiOperations DATA_DESTROY
      Deleting the data of the VDI
    • LIST_CHANGED_BLOCKS

      public static final Types.VdiOperations LIST_CHANGED_BLOCKS
      Exporting a bitmap that shows the changed blocks between two VDIs
    • SET_ON_BOOT

      public static final Types.VdiOperations SET_ON_BOOT
      Setting the on_boot field of the VDI
    • BLOCKED

      public static final Types.VdiOperations BLOCKED
      Operations on this VDI are temporarily blocked
  • Method Details

    • values

      public static Types.VdiOperations[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Types.VdiOperations valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Types.VdiOperations>