Enum SSLErrorCode

java.lang.Object
java.lang.Enum<SSLErrorCode>
org.robovm.apple.security.SSLErrorCode
All Implemented Interfaces:
Serializable, Comparable<SSLErrorCode>, ValuedEnum

public enum SSLErrorCode
extends Enum<SSLErrorCode>
implements ValuedEnum
  • Enum Constant Details

    • Protocol

      public static final SSLErrorCode Protocol
    • Negotiation

      public static final SSLErrorCode Negotiation
    • FatalAlert

      public static final SSLErrorCode FatalAlert
    • WouldBlock

      public static final SSLErrorCode WouldBlock
    • SessionNotFound

      public static final SSLErrorCode SessionNotFound
    • ClosedGraceful

      public static final SSLErrorCode ClosedGraceful
    • ClosedAbort

      public static final SSLErrorCode ClosedAbort
    • XCertChainInvalid

      public static final SSLErrorCode XCertChainInvalid
    • BadCert

      public static final SSLErrorCode BadCert
    • Crypto

      public static final SSLErrorCode Crypto
    • Internal

      public static final SSLErrorCode Internal
    • ModuleAttach

      public static final SSLErrorCode ModuleAttach
    • UnknownRootCert

      public static final SSLErrorCode UnknownRootCert
    • NoRootCert

      public static final SSLErrorCode NoRootCert
    • CertExpired

      public static final SSLErrorCode CertExpired
    • CertNotYetValid

      public static final SSLErrorCode CertNotYetValid
    • ClosedNoNotify

      public static final SSLErrorCode ClosedNoNotify
    • BufferOverflow

      public static final SSLErrorCode BufferOverflow
    • BadCipherSuite

      public static final SSLErrorCode BadCipherSuite
    • PeerUnexpectedMsg

      public static final SSLErrorCode PeerUnexpectedMsg
    • PeerBadRecordMac

      public static final SSLErrorCode PeerBadRecordMac
    • PeerDecryptionFail

      public static final SSLErrorCode PeerDecryptionFail
    • PeerRecordOverflow

      public static final SSLErrorCode PeerRecordOverflow
    • PeerDecompressFail

      public static final SSLErrorCode PeerDecompressFail
    • PeerHandshakeFail

      public static final SSLErrorCode PeerHandshakeFail
    • PeerBadCert

      public static final SSLErrorCode PeerBadCert
    • PeerUnsupportedCert

      public static final SSLErrorCode PeerUnsupportedCert
    • PeerCertRevoked

      public static final SSLErrorCode PeerCertRevoked
    • PeerCertExpired

      public static final SSLErrorCode PeerCertExpired
    • PeerCertUnknown

      public static final SSLErrorCode PeerCertUnknown
    • IllegalParam

      public static final SSLErrorCode IllegalParam
    • PeerUnknownCA

      public static final SSLErrorCode PeerUnknownCA
    • PeerAccessDenied

      public static final SSLErrorCode PeerAccessDenied
    • PeerDecodeError

      public static final SSLErrorCode PeerDecodeError
    • PeerDecryptError

      public static final SSLErrorCode PeerDecryptError
    • PeerExportRestriction

      public static final SSLErrorCode PeerExportRestriction
    • PeerProtocolVersion

      public static final SSLErrorCode PeerProtocolVersion
    • PeerInsufficientSecurity

      public static final SSLErrorCode PeerInsufficientSecurity
    • PeerInternalError

      public static final SSLErrorCode PeerInternalError
    • PeerUserCancelled

      public static final SSLErrorCode PeerUserCancelled
    • PeerNoRenegotiation

      public static final SSLErrorCode PeerNoRenegotiation
    • PeerAuthCompleted

      public static final SSLErrorCode PeerAuthCompleted
    • ClientCertRequested

      public static final SSLErrorCode ClientCertRequested
    • HostNameMismatch

      public static final SSLErrorCode HostNameMismatch
    • ConnectionRefused

      public static final SSLErrorCode ConnectionRefused
    • DecryptionFail

      public static final SSLErrorCode DecryptionFail
    • BadRecordMac

      public static final SSLErrorCode BadRecordMac
    • RecordOverflow

      public static final SSLErrorCode RecordOverflow
    • BadConfiguration

      public static final SSLErrorCode BadConfiguration
    • UnexpectedRecord

      public static final SSLErrorCode UnexpectedRecord
    • WeakPeerEphemeralDHKey

      public static final SSLErrorCode WeakPeerEphemeralDHKey
    • ClientHelloReceived

      public static final SSLErrorCode ClientHelloReceived
    • TransportReset

      public static final SSLErrorCode TransportReset
    • NetworkTimeout

      public static final SSLErrorCode NetworkTimeout
    • ConfigurationFailed

      public static final SSLErrorCode ConfigurationFailed
    • UnsupportedExtension

      public static final SSLErrorCode UnsupportedExtension
    • UnexpectedMessage

      public static final SSLErrorCode UnexpectedMessage
    • DecompressFail

      public static final SSLErrorCode DecompressFail
    • HandshakeFail

      public static final SSLErrorCode HandshakeFail
    • DecodeError

      public static final SSLErrorCode DecodeError
    • InappropriateFallback

      public static final SSLErrorCode InappropriateFallback
    • MissingExtension

      public static final SSLErrorCode MissingExtension
    • BadCertificateStatusResponse

      public static final SSLErrorCode BadCertificateStatusResponse
    • CertificateRequired

      public static final SSLErrorCode CertificateRequired
    • UnknownPSKIdentity

      public static final SSLErrorCode UnknownPSKIdentity
    • UnrecognizedName

      public static final SSLErrorCode UnrecognizedName
    • ATSViolation

      public static final SSLErrorCode ATSViolation
    • ATSMinimumVersionViolation

      public static final SSLErrorCode ATSMinimumVersionViolation
    • ATSCiphersuiteViolation

      public static final SSLErrorCode ATSCiphersuiteViolation
    • ATSMinimumKeySizeViolation

      public static final SSLErrorCode ATSMinimumKeySizeViolation
    • ATSLeafCertificateHashAlgorithmViolation

      public static final SSLErrorCode ATSLeafCertificateHashAlgorithmViolation
    • ATSCertificateHashAlgorithmViolation

      public static final SSLErrorCode ATSCertificateHashAlgorithmViolation
    • ATSCertificateTrustViolation

      public static final SSLErrorCode ATSCertificateTrustViolation
    • EarlyDataRejected

      public static final SSLErrorCode EarlyDataRejected
  • Method Details

    • values

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

      public static SSLErrorCode valueOf​(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public long value()
      Specified by:
      value in interface ValuedEnum
    • valueOf

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