Enum ApcasErrorCode
- java.lang.Object
-
- java.lang.Enum<ApcasErrorCode>
-
- com.tencentcloudapi.apcas.v20201127.ApcasErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<ApcasErrorCode>
public enum ApcasErrorCode extends Enum<ApcasErrorCode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHFAILUREDRYRUNOPERATIONFAILEDOPERATIONINTERNALERRORINTERNALERROR_INTERNALINVOKEFAILUREINVALIDPARAMETERINVALIDPARAMETERVALUELIMITEXCEEDEDMISSINGPARAMETERUNKNOWNPARAMETERUNSUPPORTEDOPERATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static ApcasErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static ApcasErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final ApcasErrorCode AUTHFAILURE
-
DRYRUNOPERATION
public static final ApcasErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final ApcasErrorCode FAILEDOPERATION
-
INTERNALERROR
public static final ApcasErrorCode INTERNALERROR
-
INTERNALERROR_INTERNALINVOKEFAILURE
public static final ApcasErrorCode INTERNALERROR_INTERNALINVOKEFAILURE
-
INVALIDPARAMETER
public static final ApcasErrorCode INVALIDPARAMETER
-
INVALIDPARAMETERVALUE
public static final ApcasErrorCode INVALIDPARAMETERVALUE
-
LIMITEXCEEDED
public static final ApcasErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final ApcasErrorCode MISSINGPARAMETER
-
UNKNOWNPARAMETER
public static final ApcasErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final ApcasErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static ApcasErrorCode[] 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 (ApcasErrorCode c : ApcasErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApcasErrorCode 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
-
-