Enum Class Types.HostDisplay

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

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

    • UNRECOGNIZED

      public static final Types.HostDisplay UNRECOGNIZED
      The value does not belong to this enumeration
    • ENABLED

      public static final Types.HostDisplay ENABLED
      This host is outputting its console to a physical display device
    • DISABLE_ON_REBOOT

      public static final Types.HostDisplay DISABLE_ON_REBOOT
      The host will stop outputting its console to a physical display device on next boot
    • DISABLED

      public static final Types.HostDisplay DISABLED
      This host is not outputting its console to a physical display device
    • ENABLE_ON_REBOOT

      public static final Types.HostDisplay ENABLE_ON_REBOOT
      The host will start outputting its console to a physical display device on next boot
  • Method Details

    • values

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