uk.co.real_logic.artio.messages.ThrottleConfigurationStatus Maven / Gradle / Ivy
/* Generated SBE (Simple Binary Encoding) message codec. */
package uk.co.real_logic.artio.messages;
@SuppressWarnings("all")
public enum ThrottleConfigurationStatus
{
/**
* Operation Succeeded
*/
OK((short)0),
/**
* Either your library doesn't own this session or the gateway doesn't know about the specified session
*/
SESSION_NOT_OWNED((short)1),
/**
* The gateway doesn't know about your library
*/
UNKNOWN_LIBRARY((short)2),
/**
* The session isn't currently logged in.
*/
SESSION_NOT_LOGGED_IN((short)3),
/**
* The session is configured to use a Fix Dictionary that doesn't support the business reject message.
*/
INVALID_DICTIONARY((short)4),
/**
* To be used to represent not present or null.
*/
NULL_VAL((short)255);
private final short value;
ThrottleConfigurationStatus(final short value)
{
this.value = value;
}
/**
* The raw encoded value in the Java type representation.
*
* @return the raw value encoded.
*/
public short value()
{
return value;
}
/**
* Lookup the enum value representing the value.
*
* @param value encoded to be looked up.
* @return the enum value representing the value.
*/
public static ThrottleConfigurationStatus get(final short value)
{
switch (value)
{
case 0: return OK;
case 1: return SESSION_NOT_OWNED;
case 2: return UNKNOWN_LIBRARY;
case 3: return SESSION_NOT_LOGGED_IN;
case 4: return INVALID_DICTIONARY;
case 255: return NULL_VAL;
}
throw new IllegalArgumentException("Unknown value: " + value);
}
}