|
||||||||||
| PREV CLASS NEXT CLASS | All Classes | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FIXServiceStatus>
com.teraspaces.qwfix.FIXServiceStatus
public enum FIXServiceStatus
Describes the current status of a FIXEngine or FIXSession.
FIXScheduler| Enum Constant Summary | |
|---|---|
ABORTED
The FIXEngine or FIXSession is manually aborted. |
|
PENDING
The FIXEngine or FIXSession is in pending state. |
|
STARTED
The FIXEngine or FIXSession is started and running. |
|
STOPPED
The FIXEngine or FIXSession is stopped normally based on the FIXScheduler associated. |
|
| Method Summary | |
|---|---|
static FIXServiceStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FIXServiceStatus[] |
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 FIXServiceStatus PENDING
public static final FIXServiceStatus STARTED
public static final FIXServiceStatus STOPPED
public static final FIXServiceStatus ABORTED
| Method Detail |
|---|
public static FIXServiceStatus[] values()
for (FIXServiceStatus c : FIXServiceStatus.values()) System.out.println(c);
public static FIXServiceStatus 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 | |||||||||