public enum ReplayMessagesStatus extends java.lang.Enum<ReplayMessagesStatus>
| Enum Constant and Description |
|---|
INVALID_CONFIGURATION_NOT_LOGGING_MESSAGES
You've requested replay of messages, but EngineConfiguration has disabled required logging of messsages
|
MISSING_MESSAGES
We can't find the required number of messages in the log
|
NULL_VAL
To be used to represent not present or null.
|
OK
Operation Succeeded
|
SEQUENCE_NUMBER_TOO_HIGH
Can't replay to that sequence number: haven't archived it yet
|
SESSION_NOT_OWNED
Either your library doesn't own this session or the gateway doesn't know about the specified session
|
UNKNOWN_LIBRARY
The gateway doesn't know about your library
|
| Modifier and Type | Method and Description |
|---|---|
static ReplayMessagesStatus |
get(short value)
Lookup the enum value representing the value.
|
short |
value()
The raw encoded value in the Java type representation.
|
static ReplayMessagesStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReplayMessagesStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplayMessagesStatus OK
public static final ReplayMessagesStatus SESSION_NOT_OWNED
public static final ReplayMessagesStatus UNKNOWN_LIBRARY
public static final ReplayMessagesStatus SEQUENCE_NUMBER_TOO_HIGH
public static final ReplayMessagesStatus MISSING_MESSAGES
public static final ReplayMessagesStatus INVALID_CONFIGURATION_NOT_LOGGING_MESSAGES
public static final ReplayMessagesStatus NULL_VAL
public static ReplayMessagesStatus[] values()
for (ReplayMessagesStatus c : ReplayMessagesStatus.values()) System.out.println(c);
public static ReplayMessagesStatus 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 ReplayMessagesStatus get(short value)
value - encoded to be looked up.Copyright © 2015-2022 Real Logic Limited. All Rights Reserved.