io.vertx.mqtt.messages.codes.MqttPubCompReasonCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-mqtt Show documentation
Show all versions of vertx-mqtt Show documentation
Vert.x MQTT reactive client and server
package io.vertx.mqtt.messages.codes;
/**
* Reason codes for PUBCOMP MQTT message
*/
public enum MqttPubCompReasonCode implements MqttReasonCode {
SUCCESS((byte)0x0),
PACKET_IDENTIFIER_NOT_FOUND((byte)0x92);
MqttPubCompReasonCode(byte byteValue) {
this.byteValue = byteValue;
}
private final byte byteValue;
@Override
public byte value() {
return byteValue;
}
public static MqttPubCompReasonCode valueOf(byte b) {
if(b == SUCCESS.byteValue) {
return SUCCESS;
} else if(b == PACKET_IDENTIFIER_NOT_FOUND.byteValue) {
return PACKET_IDENTIFIER_NOT_FOUND;
} else {
throw new IllegalArgumentException("unknown PUBCOMP reason code: " + b);
}
}
}