Enum TeoErrorCode
- java.lang.Object
-
- java.lang.Enum<TeoErrorCode>
-
- com.tencentcloudapi.teo.v20220106.TeoErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<TeoErrorCode>
public enum TeoErrorCode extends Enum<TeoErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static TeoErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static TeoErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERNALERROR
public static final TeoErrorCode INTERNALERROR
-
INTERNALERROR_BACKENDERROR
public static final TeoErrorCode INTERNALERROR_BACKENDERROR
-
INTERNALERROR_DOMAINCONFIG
public static final TeoErrorCode INTERNALERROR_DOMAINCONFIG
-
INTERNALERROR_FAILEDTOGENERATEURL
public static final TeoErrorCode INTERNALERROR_FAILEDTOGENERATEURL
-
INTERNALERROR_QUOTASYSTEM
public static final TeoErrorCode INTERNALERROR_QUOTASYSTEM
-
INVALIDPARAMETER_DOMAINNOTFOUND
public static final TeoErrorCode INVALIDPARAMETER_DOMAINNOTFOUND
-
INVALIDPARAMETER_PARAMETERERROR
public static final TeoErrorCode INVALIDPARAMETER_PARAMETERERROR
-
INVALIDPARAMETER_TARGET
public static final TeoErrorCode INVALIDPARAMETER_TARGET
-
INVALIDPARAMETER_TASKNOTGENERATED
public static final TeoErrorCode INVALIDPARAMETER_TASKNOTGENERATED
-
INVALIDPARAMETER_UPLOADURL
public static final TeoErrorCode INVALIDPARAMETER_UPLOADURL
-
LIMITEXCEEDED_BATCHQUOTA
public static final TeoErrorCode LIMITEXCEEDED_BATCHQUOTA
-
LIMITEXCEEDED_DAILYQUOTA
public static final TeoErrorCode LIMITEXCEEDED_DAILYQUOTA
-
OPERATIONDENIED
public static final TeoErrorCode OPERATIONDENIED
-
UNAUTHORIZEDOPERATION_CAMUNAUTHORIZED
public static final TeoErrorCode UNAUTHORIZEDOPERATION_CAMUNAUTHORIZED
-
UNAUTHORIZEDOPERATION_DOMAINEMPTY
public static final TeoErrorCode UNAUTHORIZEDOPERATION_DOMAINEMPTY
-
UNAUTHORIZEDOPERATION_NOPERMISSION
public static final TeoErrorCode UNAUTHORIZEDOPERATION_NOPERMISSION
-
-
Method Detail
-
values
public static TeoErrorCode[] 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 (TeoErrorCode c : TeoErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TeoErrorCode 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
-
-