io.camunda.zeebe.protocol.record.PartitionHealthStatus Maven / Gradle / Ivy
/* Generated SBE (Simple Binary Encoding) message codec. */
package io.camunda.zeebe.protocol.record;
@SuppressWarnings("all")
public enum PartitionHealthStatus
{
UNHEALTHY((short)0),
HEALTHY((short)1),
DEAD((short)2),
/**
* To be used to represent an unknown value from a later version.
*/
SBE_UNKNOWN((short)255),
/**
* To be used to represent not present or null.
*/
NULL_VAL((short)255);
private final short value;
PartitionHealthStatus(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 PartitionHealthStatus get(final short value)
{
switch (value)
{
case 0: return UNHEALTHY;
case 1: return HEALTHY;
case 2: return DEAD;
case 255: return NULL_VAL;
}
return SBE_UNKNOWN;
}
}