public enum FixPFirstMessageResponse extends java.lang.Enum<FixPFirstMessageResponse>
| Enum Constant and Description |
|---|
CREDENTIALS
The first message has been rejected due to invalid credentials.
|
ESTABLISH_DUPLICATE_ID
An Establish message has been rejected due to a duplicate session id.
|
ESTABLISH_UNNEGOTIATED
An establish message has been rejected due the session not having been negotiated yet.
|
NEGOTIATE_DUPLICATE_ID
A Negotiate message has been rejected due to a duplicate session id.
|
NEGOTIATE_DUPLICATE_ID_BAD_VER
A Negotiate message has been rejected due to a duplicate session id, with a bad session version.
|
NEGOTIATE_UNSPECIFIED
A Negotiate message has been rejected with an unspecified reason.
|
OK
No problem has been identified for the first message
|
VER_ID_ENDED
Session ver id has been ended through the normal protocol, so can't continue.
|
| Modifier and Type | Method and Description |
|---|---|
static FixPFirstMessageResponse |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FixPFirstMessageResponse[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FixPFirstMessageResponse OK
public static final FixPFirstMessageResponse CREDENTIALS
public static final FixPFirstMessageResponse NEGOTIATE_DUPLICATE_ID
public static final FixPFirstMessageResponse NEGOTIATE_DUPLICATE_ID_BAD_VER
public static final FixPFirstMessageResponse NEGOTIATE_UNSPECIFIED
public static final FixPFirstMessageResponse ESTABLISH_DUPLICATE_ID
public static final FixPFirstMessageResponse ESTABLISH_UNNEGOTIATED
public static final FixPFirstMessageResponse VER_ID_ENDED
public static FixPFirstMessageResponse[] values()
for (FixPFirstMessageResponse c : FixPFirstMessageResponse.values()) System.out.println(c);
public static FixPFirstMessageResponse 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 nullCopyright © 2015-2022 Real Logic Limited. All Rights Reserved.