|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||||
java.lang.Objectjava.lang.Enum<MultiplexerState>
org.jppf.server.nio.multiplexer.generic.MultiplexerState
public enum MultiplexerState
Enumeration of the possible states for a multiplexer channel.
| Enum Constant Summary | |
|---|---|
IDENTIFYING_INBOUND_CHANNEL
State of identifying an inbound connection from a remote multiplexer. |
|
IDLE
IDLE state, when a channel has nothing to do. |
|
RECEIVING
State of receiving data. |
|
SENDING
State of sending data. |
|
SENDING_MULTIPLEXING_INFO
State of sending outbound port information to a remote multiplexer. |
|
SENDING_OR_RECEIVING
State of sending or receiving data. |
|
| Method Summary | |
|---|---|
static MultiplexerState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MultiplexerState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final MultiplexerState IDLE
public static final MultiplexerState SENDING_OR_RECEIVING
public static final MultiplexerState SENDING
public static final MultiplexerState RECEIVING
public static final MultiplexerState IDENTIFYING_INBOUND_CHANNEL
public static final MultiplexerState SENDING_MULTIPLEXING_INFO
| Method Detail |
|---|
public static MultiplexerState[] values()
for (MultiplexerState c : MultiplexerState.values()) System.out.println(c);
public static MultiplexerState valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||||