b3.entrypoint.fixp.sbe.MassActionResponse Maven / Gradle / Ivy
/* Generated SBE (Simple Binary Encoding) message codec. */
package b3.entrypoint.fixp.sbe;
/**
* Specifies the action taken by matching engine when it receives the Order Mass Action Request.
*/
@SuppressWarnings("all")
public enum MassActionResponse
{
REJECTED((short)0),
ACCEPTED((short)1),
/**
* To be used to represent not present or null.
*/
NULL_VAL((short)255);
private final short value;
MassActionResponse(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 MassActionResponse get(final short value)
{
switch (value)
{
case 0: return REJECTED;
case 1: return ACCEPTED;
case 255: return NULL_VAL;
}
throw new IllegalArgumentException("Unknown value: " + value);
}
}