Enum TiaErrorCode
- java.lang.Object
-
- java.lang.Enum<TiaErrorCode>
-
- com.tencentcloudapi.tia.v20180226.TiaErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<TiaErrorCode>
public enum TiaErrorCode extends Enum<TiaErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static TiaErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static TiaErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILEDOPERATION_ALREADYEXISTS
public static final TiaErrorCode FAILEDOPERATION_ALREADYEXISTS
-
FAILEDOPERATION_TIMEOUT
public static final TiaErrorCode FAILEDOPERATION_TIMEOUT
-
INTERNALERROR
public static final TiaErrorCode INTERNALERROR
-
INTERNALERROR_SYSTEM
public static final TiaErrorCode INTERNALERROR_SYSTEM
-
INVALIDPARAMETER
public static final TiaErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final TiaErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_CODE
public static final TiaErrorCode INVALIDPARAMETERVALUE_CODE
-
INVALIDPARAMETERVALUE_DESCRIPTION
public static final TiaErrorCode INVALIDPARAMETERVALUE_DESCRIPTION
-
INVALIDPARAMETERVALUE_ENVIRONMENT
public static final TiaErrorCode INVALIDPARAMETERVALUE_ENVIRONMENT
-
INVALIDPARAMETERVALUE_FUNCTIONNAME
public static final TiaErrorCode INVALIDPARAMETERVALUE_FUNCTIONNAME
-
INVALIDPARAMETERVALUE_HANDLER
public static final TiaErrorCode INVALIDPARAMETERVALUE_HANDLER
-
INVALIDPARAMETERVALUE_ORDER
public static final TiaErrorCode INVALIDPARAMETERVALUE_ORDER
-
INVALIDPARAMETERVALUE_ORDERBY
public static final TiaErrorCode INVALIDPARAMETERVALUE_ORDERBY
-
INVALIDPARAMETERVALUE_RUNTIME
public static final TiaErrorCode INVALIDPARAMETERVALUE_RUNTIME
-
LIMITEXCEEDED_FUNCTION
public static final TiaErrorCode LIMITEXCEEDED_FUNCTION
-
LIMITEXCEEDED_MEMORY
public static final TiaErrorCode LIMITEXCEEDED_MEMORY
-
LIMITEXCEEDED_TIMEOUT
public static final TiaErrorCode LIMITEXCEEDED_TIMEOUT
-
MISSINGPARAMETER_CODE
public static final TiaErrorCode MISSINGPARAMETER_CODE
-
RESOURCEINUSE_FUNCTIONNAME
public static final TiaErrorCode RESOURCEINUSE_FUNCTIONNAME
-
RESOURCENOTFOUND
public static final TiaErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_FUNCTIONNAME
public static final TiaErrorCode RESOURCENOTFOUND_FUNCTIONNAME
-
RESOURCEUNAVAILABLE
public static final TiaErrorCode RESOURCEUNAVAILABLE
-
UNAUTHORIZEDOPERATION
public static final TiaErrorCode UNAUTHORIZEDOPERATION
-
UNAUTHORIZEDOPERATION_CAM
public static final TiaErrorCode UNAUTHORIZEDOPERATION_CAM
-
UNAUTHORIZEDOPERATION_REGION
public static final TiaErrorCode UNAUTHORIZEDOPERATION_REGION
-
UNSUPPORTEDOPERATION_UNSUPPORTEDVERSION
public static final TiaErrorCode UNSUPPORTEDOPERATION_UNSUPPORTEDVERSION
-
-
Method Detail
-
values
public static TiaErrorCode[] 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 (TiaErrorCode c : TiaErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TiaErrorCode 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
-
-