public enum KeyExchange extends Enum<KeyExchange>
Enum Constant and Description |
---|
ANY |
DHd |
DHEPSK |
DHr |
ECDHe |
ECDHEPSK |
ECDHr |
EDH |
EECDH |
FZA |
GOST |
KRB5 |
PSK |
RSA |
RSAPSK |
SRP |
Modifier and Type | Method and Description |
---|---|
static KeyExchange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyExchange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyExchange EECDH
public static final KeyExchange RSA
public static final KeyExchange DHr
public static final KeyExchange DHd
public static final KeyExchange EDH
public static final KeyExchange PSK
public static final KeyExchange FZA
public static final KeyExchange KRB5
public static final KeyExchange ECDHr
public static final KeyExchange ECDHe
public static final KeyExchange GOST
public static final KeyExchange SRP
public static final KeyExchange RSAPSK
public static final KeyExchange ECDHEPSK
public static final KeyExchange DHEPSK
public static final KeyExchange ANY
public static KeyExchange[] values()
for (KeyExchange c : KeyExchange.values()) System.out.println(c);
public static KeyExchange 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 © 2000-2021 Apache Software Foundation. All Rights Reserved.