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