public static enum DataChannel.CloseAsyncStatus extends Enum<DataChannel.CloseAsyncStatus>
| Enum Constant and Description |
|---|
DONE |
SO_WAIT_READ |
SO_WAIT_WRITE |
| Modifier and Type | Method and Description |
|---|---|
static DataChannel.CloseAsyncStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataChannel.CloseAsyncStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataChannel.CloseAsyncStatus SO_WAIT_READ
public static final DataChannel.CloseAsyncStatus SO_WAIT_WRITE
public static final DataChannel.CloseAsyncStatus DONE
public static DataChannel.CloseAsyncStatus[] values()
for (DataChannel.CloseAsyncStatus c : DataChannel.CloseAsyncStatus.values()) System.out.println(c);
public static DataChannel.CloseAsyncStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.