Enum IecpErrorCode
- java.lang.Object
-
- java.lang.Enum<IecpErrorCode>
-
- com.tencentcloudapi.iecp.v20210914.IecpErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<IecpErrorCode>
public enum IecpErrorCode extends Enum<IecpErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static IecpErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static IecpErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final IecpErrorCode AUTHFAILURE
-
DRYRUNOPERATION
public static final IecpErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final IecpErrorCode FAILEDOPERATION
-
INTERNALERROR
public static final IecpErrorCode INTERNALERROR
-
INTERNALERROR_DBERROR
public static final IecpErrorCode INTERNALERROR_DBERROR
-
INVALIDPARAMETER
public static final IecpErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final IecpErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_DUPLICATENAME
public static final IecpErrorCode INVALIDPARAMETERVALUE_DUPLICATENAME
-
LIMITEXCEEDED
public static final IecpErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final IecpErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final IecpErrorCode OPERATIONDENIED
-
REQUESTLIMITEXCEEDED
public static final IecpErrorCode REQUESTLIMITEXCEEDED
-
RESOURCEINUSE
public static final IecpErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final IecpErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final IecpErrorCode RESOURCENOTFOUND
-
RESOURCEUNAVAILABLE
public static final IecpErrorCode RESOURCEUNAVAILABLE
-
RESOURCESSOLDOUT
public static final IecpErrorCode RESOURCESSOLDOUT
-
UNAUTHORIZEDOPERATION
public static final IecpErrorCode UNAUTHORIZEDOPERATION
-
UNKNOWNPARAMETER
public static final IecpErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final IecpErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static IecpErrorCode[] 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 (IecpErrorCode c : IecpErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IecpErrorCode 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
-
-