public static enum CipherSuite.KeyExchangeAlgorithm extends Enum<CipherSuite.KeyExchangeAlgorithm>
| Enum Constant and Description |
|---|
DH_ANON |
DH_DSS |
DH_RSA |
DHE_DSS |
DHE_RSA |
EC_DIFFIE_HELLMAN |
ECDHE_PSK |
NULL |
PSK |
RSA |
| Modifier and Type | Method and Description |
|---|---|
static CipherSuite.KeyExchangeAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CipherSuite.KeyExchangeAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CipherSuite.KeyExchangeAlgorithm NULL
public static final CipherSuite.KeyExchangeAlgorithm DHE_DSS
public static final CipherSuite.KeyExchangeAlgorithm DHE_RSA
public static final CipherSuite.KeyExchangeAlgorithm DH_ANON
public static final CipherSuite.KeyExchangeAlgorithm RSA
public static final CipherSuite.KeyExchangeAlgorithm DH_DSS
public static final CipherSuite.KeyExchangeAlgorithm DH_RSA
public static final CipherSuite.KeyExchangeAlgorithm PSK
public static final CipherSuite.KeyExchangeAlgorithm ECDHE_PSK
public static final CipherSuite.KeyExchangeAlgorithm EC_DIFFIE_HELLMAN
public static CipherSuite.KeyExchangeAlgorithm[] values()
for (CipherSuite.KeyExchangeAlgorithm c : CipherSuite.KeyExchangeAlgorithm.values()) System.out.println(c);
public static CipherSuite.KeyExchangeAlgorithm valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023 Eclipse Foundation. All rights reserved.