Enum Class Types.VmPowerState

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

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

    • UNRECOGNIZED

      public static final Types.VmPowerState UNRECOGNIZED
      The value does not belong to this enumeration
    • HALTED

      public static final Types.VmPowerState HALTED
      VM is offline and not using any resources
    • PAUSED

      public static final Types.VmPowerState PAUSED
      All resources have been allocated but the VM itself is paused and its vCPUs are not running
    • RUNNING

      public static final Types.VmPowerState RUNNING
      Running
    • SUSPENDED

      public static final Types.VmPowerState SUSPENDED
      VM state has been saved to disk and it is nolonger running. Note that disks remain in-use while the VM is suspended.
  • Method Details

    • values

      public static Types.VmPowerState[] 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.VmPowerState 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.VmPowerState>