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