Enum MqttDecoder.DecoderState

java.lang.Object
java.lang.Enum<MqttDecoder.DecoderState>
io.netty.handler.codec.mqtt.MqttDecoder.DecoderState
All Implemented Interfaces:
Serializable, Comparable<MqttDecoder.DecoderState>, java.lang.constant.Constable
Enclosing class:
MqttDecoder

static enum MqttDecoder.DecoderState extends Enum<MqttDecoder.DecoderState>
States of the decoder. We start at READ_FIXED_HEADER, followed by READ_VARIABLE_HEADER and finally READ_PAYLOAD.
  • Enum Constant Details

  • Constructor Details

    • DecoderState

      private DecoderState()
  • Method Details

    • values

      public static MqttDecoder.DecoderState[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static MqttDecoder.DecoderState valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null