|
||||||||||
| PREV CLASS NEXT CLASS | All Classes | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<FIXSessionDuplicatedFieldHandlingOption>
com.teraspaces.qwfix.FIXSessionDuplicatedFieldHandlingOption
public enum FIXSessionDuplicatedFieldHandlingOption
Specifies the actions when a duplicated field is found in a FIX message during decode process.
| Enum Constant Summary | |
|---|---|
IGNORE
Ignores that field. |
|
RAISE_ERROR
Raises an error, which finally turns into a session rejects message sent to the peer. |
|
VERIFY
Verifies the value of the field. |
|
| Method Summary | |
|---|---|
static FIXSessionDuplicatedFieldHandlingOption |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FIXSessionDuplicatedFieldHandlingOption[] |
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 FIXSessionDuplicatedFieldHandlingOption IGNORE
public static final FIXSessionDuplicatedFieldHandlingOption RAISE_ERROR
public static final FIXSessionDuplicatedFieldHandlingOption VERIFY
| Method Detail |
|---|
public static FIXSessionDuplicatedFieldHandlingOption[] values()
for (FIXSessionDuplicatedFieldHandlingOption c : FIXSessionDuplicatedFieldHandlingOption.values()) System.out.println(c);
public static FIXSessionDuplicatedFieldHandlingOption 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 | |||||||||