Package com.tencentcloudapi.zj.v20190121
Enum ZjErrorCode
- java.lang.Object
-
- java.lang.Enum<ZjErrorCode>
-
- com.tencentcloudapi.zj.v20190121.ZjErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<ZjErrorCode>
public enum ZjErrorCode extends Enum<ZjErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static ZjErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static ZjErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final ZjErrorCode AUTHFAILURE
-
DRYRUNOPERATION
public static final ZjErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final ZjErrorCode FAILEDOPERATION
-
FAILEDOPERATION_SMSTEMPLATEEXISTS
public static final ZjErrorCode FAILEDOPERATION_SMSTEMPLATEEXISTS
-
INTERNALERROR
public static final ZjErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final ZjErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final ZjErrorCode INVALIDPARAMETERVALUE
-
LIMITEXCEEDED
public static final ZjErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final ZjErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final ZjErrorCode OPERATIONDENIED
-
REQUESTLIMITEXCEEDED
public static final ZjErrorCode REQUESTLIMITEXCEEDED
-
RESOURCEINUSE
public static final ZjErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final ZjErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final ZjErrorCode RESOURCENOTFOUND
-
RESOURCEUNAVAILABLE
public static final ZjErrorCode RESOURCEUNAVAILABLE
-
RESOURCESSOLDOUT
public static final ZjErrorCode RESOURCESSOLDOUT
-
UNAUTHORIZEDOPERATION
public static final ZjErrorCode UNAUTHORIZEDOPERATION
-
UNAUTHORIZEDOPERATION_ROLEFAILURE
public static final ZjErrorCode UNAUTHORIZEDOPERATION_ROLEFAILURE
-
UNKNOWNPARAMETER
public static final ZjErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final ZjErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static ZjErrorCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ZjErrorCode c : ZjErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ZjErrorCode 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 nameNullPointerException- if the argument is null
-
getValue
public String getValue()
- Returns:
- errorcode value
-
-