Enum BriErrorCode
- java.lang.Object
-
- java.lang.Enum<BriErrorCode>
-
- com.tencentcloudapi.bri.v20190328.BriErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<BriErrorCode>
public enum BriErrorCode extends Enum<BriErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static BriErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static BriErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INTERNALERROR
public static final BriErrorCode INTERNALERROR
-
INTERNALERROR_TIMEOUT
public static final BriErrorCode INTERNALERROR_TIMEOUT
-
INVALIDPARAMETER
public static final BriErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_CERTMD5
public static final BriErrorCode INVALIDPARAMETER_CERTMD5
-
INVALIDPARAMETER_FILEMD5
public static final BriErrorCode INVALIDPARAMETER_FILEMD5
-
INVALIDPARAMETER_FILESIZE
public static final BriErrorCode INVALIDPARAMETER_FILESIZE
-
INVALIDPARAMETER_IMEI
public static final BriErrorCode INVALIDPARAMETER_IMEI
-
INVALIDPARAMETER_INVALIDACTION
public static final BriErrorCode INVALIDPARAMETER_INVALIDACTION
-
INVALIDPARAMETER_IP
public static final BriErrorCode INVALIDPARAMETER_IP
-
INVALIDPARAMETER_PACKAGENAME
public static final BriErrorCode INVALIDPARAMETER_PACKAGENAME
-
INVALIDPARAMETER_PHONENUMBER
public static final BriErrorCode INVALIDPARAMETER_PHONENUMBER
-
INVALIDPARAMETER_QQ
public static final BriErrorCode INVALIDPARAMETER_QQ
-
INVALIDPARAMETER_SERVICE
public static final BriErrorCode INVALIDPARAMETER_SERVICE
-
INVALIDPARAMETER_URL
public static final BriErrorCode INVALIDPARAMETER_URL
-
INVALIDPARAMETER_WECHAT
public static final BriErrorCode INVALIDPARAMETER_WECHAT
-
INVALIDPARAMETERVALUE
public static final BriErrorCode INVALIDPARAMETERVALUE
-
LIMITEXCEEDED
public static final BriErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final BriErrorCode MISSINGPARAMETER
-
RESOURCEINSUFFICIENT
public static final BriErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final BriErrorCode RESOURCENOTFOUND
-
RESOURCEUNAVAILABLE
public static final BriErrorCode RESOURCEUNAVAILABLE
-
UNKNOWNPARAMETER
public static final BriErrorCode UNKNOWNPARAMETER
-
-
Method Detail
-
values
public static BriErrorCode[] 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 (BriErrorCode c : BriErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BriErrorCode 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
-
-