private static enum SslFilter.State extends java.lang.Enum<SslFilter.State>
Enum Constant and Description |
---|
CLOSED |
DATA |
HANDSHAKING |
NOT_STARTED |
REHANDSHAKING |
Modifier and Type | Method and Description |
---|---|
static SslFilter.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SslFilter.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SslFilter.State NOT_STARTED
public static final SslFilter.State HANDSHAKING
public static final SslFilter.State REHANDSHAKING
public static final SslFilter.State DATA
public static final SslFilter.State CLOSED
public static SslFilter.State[] values()
for (SslFilter.State c : SslFilter.State.values()) System.out.println(c);
public static SslFilter.State 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 null