b3.entrypoint.fixp.sbe.PosMaintAction Maven / Gradle / Ivy
/* Generated SBE (Simple Binary Encoding) message codec. */
package b3.entrypoint.fixp.sbe;
/**
* Maintenance Action to be performed.
*/
@SuppressWarnings("all")
public enum PosMaintAction
{
NEW((byte)49),
CANCEL((byte)51),
/**
* To be used to represent not present or null.
*/
NULL_VAL((byte)0);
private final byte value;
PosMaintAction(final byte value)
{
this.value = value;
}
/**
* The raw encoded value in the Java type representation.
*
* @return the raw value encoded.
*/
public byte 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 PosMaintAction get(final byte value)
{
switch (value)
{
case 49: return NEW;
case 51: return CANCEL;
case 0: return NULL_VAL;
}
throw new IllegalArgumentException("Unknown value: " + value);
}
}