|
||||||||||
| PREV CLASS NEXT CLASS | All Classes | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FIXSessionConnectionStatus>
com.teraspaces.qwfix.FIXSessionConnectionStatus
public enum FIXSessionConnectionStatus
Defines the status of the underlying network connection of a FIXSession.
| Enum Constant Summary | |
|---|---|
CONNECTED
FIX session is scheduled up and the TCP channel is connected. |
|
DISABLED
FIX session is disabled. |
|
DISCONNECTED
FIX session is scheduled up. |
|
INACTIVE
FIX session is not scheduled up. |
|
| Method Summary | |
|---|---|
static FIXSessionConnectionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FIXSessionConnectionStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, 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 FIXSessionConnectionStatus INACTIVE
public static final FIXSessionConnectionStatus DISABLED
public static final FIXSessionConnectionStatus DISCONNECTED
public static final FIXSessionConnectionStatus CONNECTED
| Method Detail |
|---|
public static FIXSessionConnectionStatus[] values()
for (FIXSessionConnectionStatus c : FIXSessionConnectionStatus.values()) System.out.println(c);
public static FIXSessionConnectionStatus 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 | All Classes | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||