Enum Class ErrorCodes

java.lang.Object
java.lang.Enum<ErrorCodes>
org.chenile.mqtt.errorcodes.ErrorCodes
All Implemented Interfaces:
Serializable, Comparable<ErrorCodes>, Constable

public enum ErrorCodes extends Enum<ErrorCodes>
Chenile MQTT error codes.
  • Enum Constant Details

    • MISCONFIGURATION

      public static final ErrorCodes MISCONFIGURATION
    • UNSUPPORTED_TOPIC_FORMAT_FOR_OPERATION

      public static final ErrorCodes UNSUPPORTED_TOPIC_FORMAT_FOR_OPERATION
    • UNSUPPORTED_TOPIC_FORMAT_FOR_SERVICE

      public static final ErrorCodes UNSUPPORTED_TOPIC_FORMAT_FOR_SERVICE
    • MISSING_SERVICE

      public static final ErrorCodes MISSING_SERVICE
    • MISSING_SERVICE_OPERATION

      public static final ErrorCodes MISSING_SERVICE_OPERATION
    • CANNOT_FIND_TOPIC

      public static final ErrorCodes CANNOT_FIND_TOPIC
  • Field Details

    • subError

      final int subError
  • Constructor Details

    • ErrorCodes

      private ErrorCodes(int subError)
  • Method Details

    • values

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

      public static ErrorCodes valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • getSubError

      public int getSubError()