|
||||||||||
| PREV CLASS NEXT CLASS | All Classes | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FIXMessageDirection>
com.teraspaces.qwfix.FIXMessageDirection
public enum FIXMessageDirection
Specifies the direction of a FIXMessage.
FIXMessage.getDirection()| Enum Constant Summary | |
|---|---|
INCOMING
Indicates that the FIXMessage is an incoming message. |
|
OUTGOING
Indicates that the FIXMessage is an outgoing message. |
|
| Method Summary | |
|---|---|
static FIXMessageDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FIXMessageDirection[] |
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 FIXMessageDirection INCOMING
public static final FIXMessageDirection OUTGOING
| Method Detail |
|---|
public static FIXMessageDirection[] values()
for (FIXMessageDirection c : FIXMessageDirection.values()) System.out.println(c);
public static FIXMessageDirection 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 | |||||||||