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