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