Enum Class ChannelBindingType
- All Implemented Interfaces:
Serializable,Comparable<ChannelBindingType>,Constable
Enumerates supported channel binding types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptiontls-exporter: TLS exporter-based channel binding (RFC 5705, RFC 9266).tls-server-end-point: server certificate hash channel binding (RFC 5929).tls-unique: TLS Finished message channel binding (RFC 5929, deprecated). -
Method Summary
Modifier and TypeMethodDescriptionstatic ChannelBindingTypeReturns the enum constant of this class with the specified name.static ChannelBindingType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TLS_EXPORTER
tls-exporter: TLS exporter-based channel binding (RFC 5705, RFC 9266). -
TLS_SERVER_END_POINT
tls-server-end-point: server certificate hash channel binding (RFC 5929). -
TLS_UNIQUE
tls-unique: TLS Finished message channel binding (RFC 5929, deprecated).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getPrefix
-