Package com.tencentcloudapi.bi.v20220105
Enum BiErrorCode
- java.lang.Object
-
- java.lang.Enum<BiErrorCode>
-
- com.tencentcloudapi.bi.v20220105.BiErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<BiErrorCode>
public enum BiErrorCode extends Enum<BiErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static BiErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static BiErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final BiErrorCode AUTHFAILURE
-
FAILEDOPERATION
public static final BiErrorCode FAILEDOPERATION
-
INTERNALERROR
public static final BiErrorCode INTERNALERROR
-
INTERNALERROR_INTERNAL
public static final BiErrorCode INTERNALERROR_INTERNAL
-
INVALIDPARAMETER
public static final BiErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_EMBED
public static final BiErrorCode INVALIDPARAMETER_EMBED
-
INVALIDPARAMETERVALUE
public static final BiErrorCode INVALIDPARAMETERVALUE
-
MISSINGPARAMETER
public static final BiErrorCode MISSINGPARAMETER
-
MISSINGPARAMETER_MISSINGPARAM
public static final BiErrorCode MISSINGPARAMETER_MISSINGPARAM
-
OPERATIONDENIED
public static final BiErrorCode OPERATIONDENIED
-
REQUESTLIMITEXCEEDED
public static final BiErrorCode REQUESTLIMITEXCEEDED
-
UNAUTHORIZEDOPERATION
public static final BiErrorCode UNAUTHORIZEDOPERATION
-
UNAUTHORIZEDOPERATION_AUTHORIZE
public static final BiErrorCode UNAUTHORIZEDOPERATION_AUTHORIZE
-
UNAUTHORIZEDOPERATION_USERNOTEXIST
public static final BiErrorCode UNAUTHORIZEDOPERATION_USERNOTEXIST
-
UNKNOWNPARAMETER
public static final BiErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final BiErrorCode UNSUPPORTEDOPERATION
-
UNSUPPORTEDOPERATION_BIERROR
public static final BiErrorCode UNSUPPORTEDOPERATION_BIERROR
-
-
Method Detail
-
values
public static BiErrorCode[] 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 (BiErrorCode c : BiErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BiErrorCode 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
-
-