Enum BtoeErrorCode
- java.lang.Object
-
- java.lang.Enum<BtoeErrorCode>
-
- com.tencentcloudapi.btoe.v20210514.BtoeErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<BtoeErrorCode>
public enum BtoeErrorCode extends Enum<BtoeErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static BtoeErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static BtoeErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final BtoeErrorCode AUTHFAILURE
-
FAILEDOPERATION
public static final BtoeErrorCode FAILEDOPERATION
-
FAILEDOPERATION_ARREARSERROR
public static final BtoeErrorCode FAILEDOPERATION_ARREARSERROR
-
FAILEDOPERATION_COUNTLIMITERROR
public static final BtoeErrorCode FAILEDOPERATION_COUNTLIMITERROR
-
FAILEDOPERATION_DATAINFOTOOLONG
public static final BtoeErrorCode FAILEDOPERATION_DATAINFOTOOLONG
-
FAILEDOPERATION_DOWNLOADERROR
public static final BtoeErrorCode FAILEDOPERATION_DOWNLOADERROR
-
FAILEDOPERATION_FILEENCODINDFORMATERROR
public static final BtoeErrorCode FAILEDOPERATION_FILEENCODINDFORMATERROR
-
FAILEDOPERATION_FILEREADFAILED
public static final BtoeErrorCode FAILEDOPERATION_FILEREADFAILED
-
FAILEDOPERATION_HASHNOMATCH
public static final BtoeErrorCode FAILEDOPERATION_HASHNOMATCH
-
FAILEDOPERATION_ONCHAINFAILURE
public static final BtoeErrorCode FAILEDOPERATION_ONCHAINFAILURE
-
FAILEDOPERATION_QUERYNORECORD
public static final BtoeErrorCode FAILEDOPERATION_QUERYNORECORD
-
FAILEDOPERATION_SENSITIVEDATA
public static final BtoeErrorCode FAILEDOPERATION_SENSITIVEDATA
-
FAILEDOPERATION_UNKNOWERROR
public static final BtoeErrorCode FAILEDOPERATION_UNKNOWERROR
-
INTERNALERROR
public static final BtoeErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final BtoeErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_ACCOUNTINFOINVALID
public static final BtoeErrorCode INVALIDPARAMETER_ACCOUNTINFOINVALID
-
INVALIDPARAMETER_INVALIDFILESUFFIX
public static final BtoeErrorCode INVALIDPARAMETER_INVALIDFILESUFFIX
-
INVALIDPARAMETER_INVALIDPARAMETERVALUE
public static final BtoeErrorCode INVALIDPARAMETER_INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE
public static final BtoeErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_DATAINFOTOOLONG
public static final BtoeErrorCode INVALIDPARAMETERVALUE_DATAINFOTOOLONG
-
INVALIDPARAMETERVALUE_HASHNOMATCH
public static final BtoeErrorCode INVALIDPARAMETERVALUE_HASHNOMATCH
-
INVALIDPARAMETERVALUE_INVALIDFILESUFFIX
public static final BtoeErrorCode INVALIDPARAMETERVALUE_INVALIDFILESUFFIX
-
INVALIDPARAMETERVALUE_INVALIDURL
public static final BtoeErrorCode INVALIDPARAMETERVALUE_INVALIDURL
-
INVALIDPARAMETERVALUE_PARAMETERERROR
public static final BtoeErrorCode INVALIDPARAMETERVALUE_PARAMETERERROR
-
INVALIDPARAMETERVALUE_TOOLARGEFILEERROR
public static final BtoeErrorCode INVALIDPARAMETERVALUE_TOOLARGEFILEERROR
-
LIMITEXCEEDED_TOOLARGEFILEERROR
public static final BtoeErrorCode LIMITEXCEEDED_TOOLARGEFILEERROR
-
RESOURCEINSUFFICIENT_LOWBALANCE
public static final BtoeErrorCode RESOURCEINSUFFICIENT_LOWBALANCE
-
RESOURCENOTFOUND_DOWNLOADERROR
public static final BtoeErrorCode RESOURCENOTFOUND_DOWNLOADERROR
-
RESOURCEUNAVAILABLE_RESOURCENOTOPENED
public static final BtoeErrorCode RESOURCEUNAVAILABLE_RESOURCENOTOPENED
-
-
Method Detail
-
values
public static BtoeErrorCode[] 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 (BtoeErrorCode c : BtoeErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BtoeErrorCode 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
-
-