Enum KeyExchange
- java.lang.Object
- 
- java.lang.Enum<KeyExchange>
- 
- org.apache.tomcat.util.net.openssl.ciphers.KeyExchange
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<KeyExchange>
 
 public enum KeyExchange extends java.lang.Enum<KeyExchange> 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static KeyExchangevalueOf(java.lang.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.
 
- 
- 
- 
Enum Constant Detail- 
EECDHpublic static final KeyExchange EECDH 
 - 
RSApublic static final KeyExchange RSA 
 - 
DHrpublic static final KeyExchange DHr 
 - 
DHdpublic static final KeyExchange DHd 
 - 
EDHpublic static final KeyExchange EDH 
 - 
PSKpublic static final KeyExchange PSK 
 - 
FZApublic static final KeyExchange FZA 
 - 
KRB5public static final KeyExchange KRB5 
 - 
ECDHrpublic static final KeyExchange ECDHr 
 - 
ECDHepublic static final KeyExchange ECDHe 
 - 
GOSTpublic static final KeyExchange GOST 
 - 
SRPpublic static final KeyExchange SRP 
 - 
RSAPSKpublic static final KeyExchange RSAPSK 
 - 
ECDHEPSKpublic static final KeyExchange ECDHEPSK 
 - 
DHEPSKpublic static final KeyExchange DHEPSK 
 - 
ANYpublic static final KeyExchange ANY 
 
- 
 - 
Method Detail- 
valuespublic static KeyExchange[] 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 (KeyExchange c : KeyExchange.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static KeyExchange 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
 
 
- 
 
-