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