Enum ClbErrorCode
- java.lang.Object
-
- java.lang.Enum<ClbErrorCode>
-
- com.tencentcloudapi.clb.v20180317.ClbErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<ClbErrorCode>
public enum ClbErrorCode extends Enum<ClbErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static ClbErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static ClbErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final ClbErrorCode AUTHFAILURE
-
DRYRUNOPERATION
public static final ClbErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final ClbErrorCode FAILEDOPERATION
-
FAILEDOPERATION_INVALIDLBSTATUS
public static final ClbErrorCode FAILEDOPERATION_INVALIDLBSTATUS
-
INTERNALERROR
public static final ClbErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final ClbErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_FORMATERROR
public static final ClbErrorCode INVALIDPARAMETER_FORMATERROR
-
INVALIDPARAMETER_INVALIDFILTER
public static final ClbErrorCode INVALIDPARAMETER_INVALIDFILTER
-
INVALIDPARAMETER_LBIDNOTFOUND
public static final ClbErrorCode INVALIDPARAMETER_LBIDNOTFOUND
-
INVALIDPARAMETER_LISTENERIDNOTFOUND
public static final ClbErrorCode INVALIDPARAMETER_LISTENERIDNOTFOUND
-
INVALIDPARAMETER_LOCATIONNOTFOUND
public static final ClbErrorCode INVALIDPARAMETER_LOCATIONNOTFOUND
-
INVALIDPARAMETER_PORTCHECKFAILED
public static final ClbErrorCode INVALIDPARAMETER_PORTCHECKFAILED
-
INVALIDPARAMETER_PROTOCOLCHECKFAILED
public static final ClbErrorCode INVALIDPARAMETER_PROTOCOLCHECKFAILED
-
INVALIDPARAMETER_REGIONNOTFOUND
public static final ClbErrorCode INVALIDPARAMETER_REGIONNOTFOUND
-
INVALIDPARAMETER_REWRITEALREADYEXIST
public static final ClbErrorCode INVALIDPARAMETER_REWRITEALREADYEXIST
-
INVALIDPARAMETER_SOMEREWRITENOTFOUND
public static final ClbErrorCode INVALIDPARAMETER_SOMEREWRITENOTFOUND
-
INVALIDPARAMETERVALUE
public static final ClbErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_DUPLICATE
public static final ClbErrorCode INVALIDPARAMETERVALUE_DUPLICATE
-
INVALIDPARAMETERVALUE_INVALIDFILTER
public static final ClbErrorCode INVALIDPARAMETERVALUE_INVALIDFILTER
-
INVALIDPARAMETERVALUE_LENGTH
public static final ClbErrorCode INVALIDPARAMETERVALUE_LENGTH
-
INVALIDPARAMETERVALUE_RANGE
public static final ClbErrorCode INVALIDPARAMETERVALUE_RANGE
-
LIMITEXCEEDED
public static final ClbErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final ClbErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final ClbErrorCode OPERATIONDENIED
-
REQUESTLIMITEXCEEDED
public static final ClbErrorCode REQUESTLIMITEXCEEDED
-
RESOURCEINUSE
public static final ClbErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final ClbErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final ClbErrorCode RESOURCENOTFOUND
-
RESOURCESSOLDOUT
public static final ClbErrorCode RESOURCESSOLDOUT
-
UNAUTHORIZEDOPERATION
public static final ClbErrorCode UNAUTHORIZEDOPERATION
-
UNSUPPORTEDOPERATION
public static final ClbErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static ClbErrorCode[] 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 (ClbErrorCode c : ClbErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClbErrorCode 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
-
-