Enum RkpErrorCode
- java.lang.Object
-
- java.lang.Enum<RkpErrorCode>
-
- com.tencentcloudapi.rkp.v20191209.RkpErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<RkpErrorCode>
public enum RkpErrorCode extends Enum<RkpErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static RkpErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static RkpErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE_CAPSIGERROR
public static final RkpErrorCode AUTHFAILURE_CAPSIGERROR
-
AUTHFAILURE_EXPIRED
public static final RkpErrorCode AUTHFAILURE_EXPIRED
-
INTERNALERROR
public static final RkpErrorCode INTERNALERROR
-
INTERNALERROR_BACKENDLOGICERROR
public static final RkpErrorCode INTERNALERROR_BACKENDLOGICERROR
-
INTERNALERROR_SERVERERROR
public static final RkpErrorCode INTERNALERROR_SERVERERROR
-
INTERNALERROR_SIGNBACKENDERROR
public static final RkpErrorCode INTERNALERROR_SIGNBACKENDERROR
-
INVALIDPARAMETER
public static final RkpErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_DEVTOKENINVALID
public static final RkpErrorCode INVALIDPARAMETER_DEVTOKENINVALID
-
INVALIDPARAMETER_PARAMERROR
public static final RkpErrorCode INVALIDPARAMETER_PARAMERROR
-
INVALIDPARAMETER_PARAMETERERROR
public static final RkpErrorCode INVALIDPARAMETER_PARAMETERERROR
-
INVALIDPARAMETER_TOKENINVALID
public static final RkpErrorCode INVALIDPARAMETER_TOKENINVALID
-
INVALIDPARAMETER_URLERROR
public static final RkpErrorCode INVALIDPARAMETER_URLERROR
-
INVALIDPARAMETER_VERSIONERROR
public static final RkpErrorCode INVALIDPARAMETER_VERSIONERROR
-
INVALIDPARAMETERVALUE
public static final RkpErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_BADBODY
public static final RkpErrorCode INVALIDPARAMETERVALUE_BADBODY
-
INVALIDPARAMETERVALUE_BODYTOOLARGE
public static final RkpErrorCode INVALIDPARAMETERVALUE_BODYTOOLARGE
-
INVALIDPARAMETERVALUE_CAPMISMATCH
public static final RkpErrorCode INVALIDPARAMETERVALUE_CAPMISMATCH
-
INVALIDPARAMETERVALUE_HTTPMETHODERROR
public static final RkpErrorCode INVALIDPARAMETERVALUE_HTTPMETHODERROR
-
LIMITEXCEEDED
public static final RkpErrorCode LIMITEXCEEDED
-
LIMITEXCEEDED_FREQCNT
public static final RkpErrorCode LIMITEXCEEDED_FREQCNT
-
LIMITEXCEEDED_IPFREQCNT
public static final RkpErrorCode LIMITEXCEEDED_IPFREQCNT
-
LIMITEXCEEDED_KEYFREQCNT
public static final RkpErrorCode LIMITEXCEEDED_KEYFREQCNT
-
LIMITEXCEEDED_REPLAYATTACK
public static final RkpErrorCode LIMITEXCEEDED_REPLAYATTACK
-
RESOURCENOTFOUND_INTERFACENOTFOUND
public static final RkpErrorCode RESOURCENOTFOUND_INTERFACENOTFOUND
-
RESOURCEUNAVAILABLE
public static final RkpErrorCode RESOURCEUNAVAILABLE
-
RESOURCEUNAVAILABLE_NOTALLREADY
public static final RkpErrorCode RESOURCEUNAVAILABLE_NOTALLREADY
-
RESOURCEUNAVAILABLE_PERMISSIONDENIED
public static final RkpErrorCode RESOURCEUNAVAILABLE_PERMISSIONDENIED
-
UNAUTHORIZEDOPERATION_AUTHFAILED
public static final RkpErrorCode UNAUTHORIZEDOPERATION_AUTHFAILED
-
UNKNOWNPARAMETER_SECRETIDNOTEXISTS
public static final RkpErrorCode UNKNOWNPARAMETER_SECRETIDNOTEXISTS
-
-
Method Detail
-
values
public static RkpErrorCode[] 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 (RkpErrorCode c : RkpErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RkpErrorCode 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
-
-