Enum TlsCiphersuite

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

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

    • RSA_WITH_3DES_EDE_CBC_SHA

      public static final TlsCiphersuite RSA_WITH_3DES_EDE_CBC_SHA
    • RSA_WITH_AES_128_CBC_SHA

      public static final TlsCiphersuite RSA_WITH_AES_128_CBC_SHA
    • RSA_WITH_AES_256_CBC_SHA

      public static final TlsCiphersuite RSA_WITH_AES_256_CBC_SHA
    • RSA_WITH_AES_128_GCM_SHA256

      public static final TlsCiphersuite RSA_WITH_AES_128_GCM_SHA256
    • RSA_WITH_AES_256_GCM_SHA384

      public static final TlsCiphersuite RSA_WITH_AES_256_GCM_SHA384
    • RSA_WITH_AES_128_CBC_SHA256

      public static final TlsCiphersuite RSA_WITH_AES_128_CBC_SHA256
    • RSA_WITH_AES_256_CBC_SHA256

      public static final TlsCiphersuite RSA_WITH_AES_256_CBC_SHA256
    • ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA

      public static final TlsCiphersuite ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
    • ECDHE_ECDSA_WITH_AES_128_CBC_SHA

      public static final TlsCiphersuite ECDHE_ECDSA_WITH_AES_128_CBC_SHA
    • ECDHE_ECDSA_WITH_AES_256_CBC_SHA

      public static final TlsCiphersuite ECDHE_ECDSA_WITH_AES_256_CBC_SHA
    • ECDHE_RSA_WITH_3DES_EDE_CBC_SHA

      public static final TlsCiphersuite ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
    • ECDHE_RSA_WITH_AES_128_CBC_SHA

      public static final TlsCiphersuite ECDHE_RSA_WITH_AES_128_CBC_SHA
    • ECDHE_RSA_WITH_AES_256_CBC_SHA

      public static final TlsCiphersuite ECDHE_RSA_WITH_AES_256_CBC_SHA
    • ECDHE_ECDSA_WITH_AES_128_CBC_SHA256

      public static final TlsCiphersuite ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
    • ECDHE_ECDSA_WITH_AES_256_CBC_SHA384

      public static final TlsCiphersuite ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
    • ECDHE_RSA_WITH_AES_128_CBC_SHA256

      public static final TlsCiphersuite ECDHE_RSA_WITH_AES_128_CBC_SHA256
    • ECDHE_RSA_WITH_AES_256_CBC_SHA384

      public static final TlsCiphersuite ECDHE_RSA_WITH_AES_256_CBC_SHA384
    • ECDHE_ECDSA_WITH_AES_128_GCM_SHA256

      public static final TlsCiphersuite ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
    • ECDHE_ECDSA_WITH_AES_256_GCM_SHA384

      public static final TlsCiphersuite ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
    • ECDHE_RSA_WITH_AES_128_GCM_SHA256

      public static final TlsCiphersuite ECDHE_RSA_WITH_AES_128_GCM_SHA256
    • ECDHE_RSA_WITH_AES_256_GCM_SHA384

      public static final TlsCiphersuite ECDHE_RSA_WITH_AES_256_GCM_SHA384
    • ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256

      public static final TlsCiphersuite ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256
    • ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256

      public static final TlsCiphersuite ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256
    • AES_128_GCM_SHA256

      public static final TlsCiphersuite AES_128_GCM_SHA256
    • AES_256_GCM_SHA384

      public static final TlsCiphersuite AES_256_GCM_SHA384
    • CHACHA20_POLY1305_SHA256

      public static final TlsCiphersuite CHACHA20_POLY1305_SHA256
  • Method Details

    • values

      public static TlsCiphersuite[] 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 TlsCiphersuite 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 TlsCiphersuite 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