Enum Class ErrorCode

java.lang.Object
java.lang.Enum<ErrorCode>
cn.iaimi.freeimgtools.common.ErrorCode
所有已实现的接口:
Serializable, Comparable<ErrorCode>, Constable

public enum ErrorCode extends Enum<ErrorCode>
错误码
作者:
zhenghongyi @date 2023/11/21 9:31
  • 枚举常量详细资料

    • SUCCESS

      public static final ErrorCode SUCCESS
    • PARAMS_ERROR

      public static final ErrorCode PARAMS_ERROR
    • NULL_ERROR

      public static final ErrorCode NULL_ERROR
    • NOT_LOGIN

      public static final ErrorCode NOT_LOGIN
    • NO_AUTH

      public static final ErrorCode NO_AUTH
    • NOT_FOUND_ERROR

      public static final ErrorCode NOT_FOUND_ERROR
    • FORBIDDEN

      public static final ErrorCode FORBIDDEN
    • SYSTEM_ERROR

      public static final ErrorCode SYSTEM_ERROR
    • OPERATION_ERROR

      public static final ErrorCode OPERATION_ERROR
  • 方法详细资料

    • values

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

      public static ErrorCode 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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getCode

      public int getCode()
    • getMessage

      public String getMessage()
    • getDescription

      public String getDescription()