Enum SslpodErrorCode
- java.lang.Object
-
- java.lang.Enum<SslpodErrorCode>
-
- com.tencentcloudapi.sslpod.v20190605.SslpodErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<SslpodErrorCode>
public enum SslpodErrorCode extends Enum<SslpodErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static SslpodErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static SslpodErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final SslpodErrorCode AUTHFAILURE
-
FAILEDOPERATION
public static final SslpodErrorCode FAILEDOPERATION
-
FAILEDOPERATION_REPETITIONADD
public static final SslpodErrorCode FAILEDOPERATION_REPETITIONADD
-
FAILEDOPERATION_RESOLVEDOMAINFAILED
public static final SslpodErrorCode FAILEDOPERATION_RESOLVEDOMAINFAILED
-
INTERNALERROR
public static final SslpodErrorCode INTERNALERROR
-
INVALIDPARAMETER_INVALIDDOMAIN
public static final SslpodErrorCode INVALIDPARAMETER_INVALIDDOMAIN
-
INVALIDPARAMETER_INVALIDIP
public static final SslpodErrorCode INVALIDPARAMETER_INVALIDIP
-
INVALIDPARAMETER_INVALIDPORT
public static final SslpodErrorCode INVALIDPARAMETER_INVALIDPORT
-
INVALIDPARAMETER_INVALIDSERVERTYPE
public static final SslpodErrorCode INVALIDPARAMETER_INVALIDSERVERTYPE
-
INVALIDPARAMETER_INVALIDTAGNAME
public static final SslpodErrorCode INVALIDPARAMETER_INVALIDTAGNAME
-
INVALIDPARAMETER_TOOMANYTAG
public static final SslpodErrorCode INVALIDPARAMETER_TOOMANYTAG
-
INVALIDPARAMETERVALUE
public static final SslpodErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_INVALIDNOTICETYPE
public static final SslpodErrorCode INVALIDPARAMETERVALUE_INVALIDNOTICETYPE
-
INVALIDPARAMETERVALUE_INVALIDSEARCHTYPE
public static final SslpodErrorCode INVALIDPARAMETERVALUE_INVALIDSEARCHTYPE
-
LIMITEXCEEDED_ADDEXCEEDED
public static final SslpodErrorCode LIMITEXCEEDED_ADDEXCEEDED
-
LIMITEXCEEDED_MONITOREXCEEDED
public static final SslpodErrorCode LIMITEXCEEDED_MONITOREXCEEDED
-
RESOURCENOTFOUND_PRODUCT
public static final SslpodErrorCode RESOURCENOTFOUND_PRODUCT
-
-
Method Detail
-
values
public static SslpodErrorCode[] 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 (SslpodErrorCode c : SslpodErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SslpodErrorCode 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
-
-