Enum SSLErrorCode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SSLErrorCode>, org.robovm.rt.bro.ValuedEnum

    public enum SSLErrorCode
    extends java.lang.Enum<SSLErrorCode>
    implements org.robovm.rt.bro.ValuedEnum
    • Enum Constant Detail

      • SessionNotFound

        public static final SSLErrorCode SessionNotFound
      • ClosedGraceful

        public static final SSLErrorCode ClosedGraceful
      • XCertChainInvalid

        public static final SSLErrorCode XCertChainInvalid
      • ModuleAttach

        public static final SSLErrorCode ModuleAttach
      • UnknownRootCert

        public static final SSLErrorCode UnknownRootCert
      • 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
      • 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
      • 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
    • Method Detail

      • values

        public static SSLErrorCode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SSLErrorCode c : SSLErrorCode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SSLErrorCode valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • value

        public long value()
        Specified by:
        value in interface org.robovm.rt.bro.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null