Enum OmicsErrorCode
- java.lang.Object
-
- java.lang.Enum<OmicsErrorCode>
-
- com.tencentcloudapi.omics.v20221128.OmicsErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<OmicsErrorCode>
public enum OmicsErrorCode extends Enum<OmicsErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static OmicsErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static OmicsErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final OmicsErrorCode AUTHFAILURE
-
FAILEDOPERATION
public static final OmicsErrorCode FAILEDOPERATION
-
FAILEDOPERATION_DUPLICATETABLEHEADER
public static final OmicsErrorCode FAILEDOPERATION_DUPLICATETABLEHEADER
-
FAILEDOPERATION_EMPTYTABLEHEADER
public static final OmicsErrorCode FAILEDOPERATION_EMPTYTABLEHEADER
-
FAILEDOPERATION_INVALIDTABLEHEADER
public static final OmicsErrorCode FAILEDOPERATION_INVALIDTABLEHEADER
-
FAILEDOPERATION_INVALIDTABLELENGTH
public static final OmicsErrorCode FAILEDOPERATION_INVALIDTABLELENGTH
-
FAILEDOPERATION_RETRYLIMITEXCEEDED
public static final OmicsErrorCode FAILEDOPERATION_RETRYLIMITEXCEEDED
-
FAILEDOPERATION_STATUSNOTSUPPORTED
public static final OmicsErrorCode FAILEDOPERATION_STATUSNOTSUPPORTED
-
FAILEDOPERATION_TABLEDATATYPEMISMATCH
public static final OmicsErrorCode FAILEDOPERATION_TABLEDATATYPEMISMATCH
-
FAILEDOPERATION_VERSIONNOTRELEASED
public static final OmicsErrorCode FAILEDOPERATION_VERSIONNOTRELEASED
-
INTERNALERROR
public static final OmicsErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final OmicsErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final OmicsErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_DUPLICATENAME
public static final OmicsErrorCode INVALIDPARAMETERVALUE_DUPLICATENAME
-
INVALIDPARAMETERVALUE_ENTRYPOINTNOTSET
public static final OmicsErrorCode INVALIDPARAMETERVALUE_ENTRYPOINTNOTSET
-
INVALIDPARAMETERVALUE_ENVIRONMENTNOTAVAILABLE
public static final OmicsErrorCode INVALIDPARAMETERVALUE_ENVIRONMENTNOTAVAILABLE
-
INVALIDPARAMETERVALUE_INVALIDBASE64ENCODE
public static final OmicsErrorCode INVALIDPARAMETERVALUE_INVALIDBASE64ENCODE
-
INVALIDPARAMETERVALUE_INVALIDCOSKEY
public static final OmicsErrorCode INVALIDPARAMETERVALUE_INVALIDCOSKEY
-
INVALIDPARAMETERVALUE_INVALIDCSVFORMAT
public static final OmicsErrorCode INVALIDPARAMETERVALUE_INVALIDCSVFORMAT
-
INVALIDPARAMETERVALUE_INVALIDDESCRIPTION
public static final OmicsErrorCode INVALIDPARAMETERVALUE_INVALIDDESCRIPTION
-
INVALIDPARAMETERVALUE_INVALIDINPUTJSONFORMAT
public static final OmicsErrorCode INVALIDPARAMETERVALUE_INVALIDINPUTJSONFORMAT
-
INVALIDPARAMETERVALUE_INVALIDINPUTPLACEHOLDER
public static final OmicsErrorCode INVALIDPARAMETERVALUE_INVALIDINPUTPLACEHOLDER
-
INVALIDPARAMETERVALUE_INVALIDNAME
public static final OmicsErrorCode INVALIDPARAMETERVALUE_INVALIDNAME
-
INVALIDPARAMETERVALUE_INVALIDRUNOPTION
public static final OmicsErrorCode INVALIDPARAMETERVALUE_INVALIDRUNOPTION
-
INVALIDPARAMETERVALUE_TABLEDATATYPELENGTHMISMATCH
public static final OmicsErrorCode INVALIDPARAMETERVALUE_TABLEDATATYPELENGTHMISMATCH
-
INVALIDPARAMETERVALUE_UNSUPPORTEDTABLEDATATYPE
public static final OmicsErrorCode INVALIDPARAMETERVALUE_UNSUPPORTEDTABLEDATATYPE
-
LIMITEXCEEDED
public static final OmicsErrorCode LIMITEXCEEDED
-
OPERATIONDENIED
public static final OmicsErrorCode OPERATIONDENIED
-
RESOURCEINUSE
public static final OmicsErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final OmicsErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final OmicsErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_APPLICATIONNOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_APPLICATIONNOTEXIST
-
RESOURCENOTFOUND_APPLICATIONVERSIONNOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_APPLICATIONVERSIONNOTEXIST
-
RESOURCENOTFOUND_COSBUCKETNOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_COSBUCKETNOTEXIST
-
RESOURCENOTFOUND_COSOBJECTNOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_COSOBJECTNOTEXIST
-
RESOURCENOTFOUND_ENVIRONMENTNOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_ENVIRONMENTNOTEXIST
-
RESOURCENOTFOUND_PROJECTNOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_PROJECTNOTEXIST
-
RESOURCENOTFOUND_RUNGROUPNOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_RUNGROUPNOTEXIST
-
RESOURCENOTFOUND_RUNNOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_RUNNOTEXIST
-
RESOURCENOTFOUND_TABLENOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_TABLENOTEXIST
-
RESOURCENOTFOUND_TABLEROWNOTEXIST
public static final OmicsErrorCode RESOURCENOTFOUND_TABLEROWNOTEXIST
-
RESOURCEUNAVAILABLE
public static final OmicsErrorCode RESOURCEUNAVAILABLE
-
UNSUPPORTEDOPERATION
public static final OmicsErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static OmicsErrorCode[] 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 (OmicsErrorCode c : OmicsErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OmicsErrorCode 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
-
-