Enum Class Types.CertificateType

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

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

    • UNRECOGNIZED

      public static final Types.CertificateType UNRECOGNIZED
      The value does not belong to this enumeration
    • CA

      public static final Types.CertificateType CA
      Certificate that is trusted by the whole pool
    • HOST

      public static final Types.CertificateType HOST
      Certificate that identifies a single host to entities outside the pool
    • HOST_INTERNAL

      public static final Types.CertificateType HOST_INTERNAL
      Certificate that identifies a single host to other pool members
  • Method Details

    • values

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