public enum MessageStatus extends java.lang.Enum<MessageStatus>
| Enum Constant and Description |
|---|
AUTH_REJECT
This is a Logon message that has been rejected by your authentication strategy in the case of an Acceptor.
|
CATCHUP_REPLAY
This message has been sent from the FixEngine to the FixLibrary as a result of a Catchup Replay (ie in response to a fixLibrary.requestSession() call), rather than being sent directly over TCP.
|
INVALID
Message is invalid.
|
INVALID_BODYLENGTH
Message has an invalid FIX body length field and hasn't been processed
|
INVALID_CHECKSUM
Message has an invalid FIX checksum and hasn't been processed
|
NULL_VAL
To be used to represent not present or null.
|
OK
Content is a valid Message, passing Framer validation
|
| Modifier and Type | Method and Description |
|---|---|
static MessageStatus |
get(short value)
Lookup the enum value representing the value.
|
short |
value()
The raw encoded value in the Java type representation.
|
static MessageStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageStatus OK
public static final MessageStatus INVALID_CHECKSUM
public static final MessageStatus INVALID_BODYLENGTH
public static final MessageStatus INVALID
public static final MessageStatus CATCHUP_REPLAY
public static final MessageStatus AUTH_REJECT
public static final MessageStatus NULL_VAL
public static MessageStatus[] values()
for (MessageStatus c : MessageStatus.values()) System.out.println(c);
public static MessageStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic short value()
public static MessageStatus get(short value)
value - encoded to be looked up.Copyright © 2015-2022 Real Logic Limited. All Rights Reserved.