Enum Class SSLAuthType

java.lang.Object
java.lang.Enum<SSLAuthType>
org.mozilla.jss.ssl.SSLAuthType
All Implemented Interfaces:
Serializable, Comparable<SSLAuthType>, Constable

public enum SSLAuthType extends Enum<SSLAuthType>
  • Enum Constant Details

    • ssl_auth_null

      public static final SSLAuthType ssl_auth_null
    • ssl_auth_rsa_decrypt

      public static final SSLAuthType ssl_auth_rsa_decrypt
    • ssl_auth_dsa

      public static final SSLAuthType ssl_auth_dsa
    • ssl_auth_kea

      public static final SSLAuthType ssl_auth_kea
    • ssl_auth_ecdsa

      public static final SSLAuthType ssl_auth_ecdsa
    • ssl_auth_ecdh_rsa

      public static final SSLAuthType ssl_auth_ecdh_rsa
    • ssl_auth_ecdh_ecdsa

      public static final SSLAuthType ssl_auth_ecdh_ecdsa
    • ssl_auth_rsa_sign

      public static final SSLAuthType ssl_auth_rsa_sign
    • ssl_auth_rsa_pss

      public static final SSLAuthType ssl_auth_rsa_pss
    • ssl_auth_psk

      public static final SSLAuthType ssl_auth_psk
    • ssl_auth_tls13_any

      public static final SSLAuthType ssl_auth_tls13_any
  • Field Details

    • value

      private int value
  • Constructor Details

    • SSLAuthType

      private SSLAuthType(int value)
  • Method Details

    • values

      public static SSLAuthType[] 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 SSLAuthType 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
    • getValue

      public int getValue()
    • valueOf

      public static SSLAuthType valueOf(int value)
      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:
      value - 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