Enum YinsudaErrorCode
- java.lang.Object
-
- java.lang.Enum<YinsudaErrorCode>
-
- com.tencentcloudapi.yinsuda.v20220527.YinsudaErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<YinsudaErrorCode>
public enum YinsudaErrorCode extends Enum<YinsudaErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static YinsudaErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static YinsudaErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final YinsudaErrorCode AUTHFAILURE
-
FAILEDOPERATION
public static final YinsudaErrorCode FAILEDOPERATION
-
FAILEDOPERATION_DUPLICATETRADESERIALNO
public static final YinsudaErrorCode FAILEDOPERATION_DUPLICATETRADESERIALNO
-
FAILEDOPERATION_USERLIVEVIPTIMEEXPIRE
public static final YinsudaErrorCode FAILEDOPERATION_USERLIVEVIPTIMEEXPIRE
-
FAILEDOPERATION_USERNOTLIVEVIP
public static final YinsudaErrorCode FAILEDOPERATION_USERNOTLIVEVIP
-
INTERNALERROR
public static final YinsudaErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final YinsudaErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final YinsudaErrorCode INVALIDPARAMETERVALUE
-
MISSINGPARAMETER
public static final YinsudaErrorCode MISSINGPARAMETER
-
RESOURCENOTFOUND
public static final YinsudaErrorCode RESOURCENOTFOUND
-
RESOURCEUNAVAILABLE
public static final YinsudaErrorCode RESOURCEUNAVAILABLE
-
-
Method Detail
-
values
public static YinsudaErrorCode[] 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 (YinsudaErrorCode c : YinsudaErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static YinsudaErrorCode 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
-
-