public enum TlsHandshakeType extends java.lang.Enum<TlsHandshakeType>
| Enum Constant | Description |
|---|---|
CERTIFICATE |
|
CERTIFICATE_REQUEST |
|
CERTIFICATE_VERIFY |
|
CLIENT_HELLO |
|
CLIENT_KEY_EXCHANGE |
|
FINISHED |
|
HELLO_REQUEST |
|
SERVER_HELLO |
|
SERVER_HELLO_DONE |
|
SERVER_KEY_EXCHANGE |
| Modifier and Type | Method | Description |
|---|---|---|
short |
value() |
|
static TlsHandshakeType |
valueOf(short value) |
Returns the enum constant of this type with the specified name.
|
static TlsHandshakeType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TlsHandshakeType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TlsHandshakeType HELLO_REQUEST
public static final TlsHandshakeType CLIENT_HELLO
public static final TlsHandshakeType SERVER_HELLO
public static final TlsHandshakeType CERTIFICATE
public static final TlsHandshakeType SERVER_KEY_EXCHANGE
public static final TlsHandshakeType CERTIFICATE_REQUEST
public static final TlsHandshakeType SERVER_HELLO_DONE
public static final TlsHandshakeType CERTIFICATE_VERIFY
public static final TlsHandshakeType CLIENT_KEY_EXCHANGE
public static final TlsHandshakeType FINISHED
public static TlsHandshakeType[] values()
for (TlsHandshakeType c : TlsHandshakeType.values()) System.out.println(c);
public static TlsHandshakeType 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 short value()
public static TlsHandshakeType valueOf(short 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.