public enum TlsExtensionType extends java.lang.Enum<TlsExtensionType>
| Enum Constant | Description |
|---|---|
APPLICATION_LAYER_PROTOCOL_NEGOTIATION |
|
SERVER_NAME |
|
SIGNATURE_ALGORITHMS |
| Modifier and Type | Method | Description |
|---|---|---|
int |
value() |
|
static TlsExtensionType |
valueOf(int value) |
Returns the enum constant of this type with the specified name.
|
static TlsExtensionType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TlsExtensionType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TlsExtensionType SERVER_NAME
public static final TlsExtensionType SIGNATURE_ALGORITHMS
public static final TlsExtensionType APPLICATION_LAYER_PROTOCOL_NEGOTIATION
public static TlsExtensionType[] values()
for (TlsExtensionType c : TlsExtensionType.values()) System.out.println(c);
public static TlsExtensionType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int value()
public static TlsExtensionType valueOf(int value)
value - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2016–2019. All rights reserved.