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