public static enum IoSession.SessionState extends Enum<IoSession.SessionState>
IoSession
Enum Constant and Description |
---|
CLOSED |
CLOSING |
CONNECTED |
CREATED |
SECURED |
SECURING |
Modifier and Type | Method and Description |
---|---|
static IoSession.SessionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IoSession.SessionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IoSession.SessionState CREATED
public static final IoSession.SessionState CONNECTED
public static final IoSession.SessionState CLOSING
public static final IoSession.SessionState CLOSED
public static final IoSession.SessionState SECURING
public static final IoSession.SessionState SECURED
public static IoSession.SessionState[] values()
for (IoSession.SessionState c : IoSession.SessionState.values()) System.out.println(c);
public static IoSession.SessionState 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 © 2009–2013 Apache MINA Project. All rights reserved.