Enum CccErrorCode
- java.lang.Object
-
- java.lang.Enum<CccErrorCode>
-
- com.tencentcloudapi.ccc.v20200210.CccErrorCode
-
- All Implemented Interfaces:
Serializable
,Comparable<CccErrorCode>
public enum CccErrorCode extends Enum<CccErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static CccErrorCode
valueOf(String name)
Returns the enum constant of this type with the specified name.static CccErrorCode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAILEDOPERATION_CALLOUTFAILED
public static final CccErrorCode FAILEDOPERATION_CALLOUTFAILED
-
FAILEDOPERATION_CALLEEISLIMITED
public static final CccErrorCode FAILEDOPERATION_CALLEEISLIMITED
-
FAILEDOPERATION_CALLEROVERFREQUENCY
public static final CccErrorCode FAILEDOPERATION_CALLEROVERFREQUENCY
-
FAILEDOPERATION_CURSTATENOTALLOWMODIFY
public static final CccErrorCode FAILEDOPERATION_CURSTATENOTALLOWMODIFY
-
FAILEDOPERATION_DUPLICATEDACCOUNT
public static final CccErrorCode FAILEDOPERATION_DUPLICATEDACCOUNT
-
FAILEDOPERATION_NOCALLOUTNUMBER
public static final CccErrorCode FAILEDOPERATION_NOCALLOUTNUMBER
-
FAILEDOPERATION_PERMISSIONDENIED
public static final CccErrorCode FAILEDOPERATION_PERMISSIONDENIED
-
FAILEDOPERATION_SEATSTATUSBUSY
public static final CccErrorCode FAILEDOPERATION_SEATSTATUSBUSY
-
INTERNALERROR
public static final CccErrorCode INTERNALERROR
-
INTERNALERROR_DBERROR
public static final CccErrorCode INTERNALERROR_DBERROR
-
INVALIDPARAMETER
public static final CccErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_DUPLICATEADDRESS
public static final CccErrorCode INVALIDPARAMETER_DUPLICATEADDRESS
-
INVALIDPARAMETER_DUPLICATEPHONENUMBER
public static final CccErrorCode INVALIDPARAMETER_DUPLICATEPHONENUMBER
-
INVALIDPARAMETER_DUPLICATESIPACCOUNT
public static final CccErrorCode INVALIDPARAMETER_DUPLICATESIPACCOUNT
-
INVALIDPARAMETER_ILLEGALADDRESS
public static final CccErrorCode INVALIDPARAMETER_ILLEGALADDRESS
-
INVALIDPARAMETER_ILLEGALPHONENUMBER
public static final CccErrorCode INVALIDPARAMETER_ILLEGALPHONENUMBER
-
INVALIDPARAMETER_INSTANCENOTEXIST
public static final CccErrorCode INVALIDPARAMETER_INSTANCENOTEXIST
-
INVALIDPARAMETER_INVALIDADDRESS
public static final CccErrorCode INVALIDPARAMETER_INVALIDADDRESS
-
INVALIDPARAMETER_INVALIDIP
public static final CccErrorCode INVALIDPARAMETER_INVALIDIP
-
INVALIDPARAMETER_INVALIDPHONENUMBER
public static final CccErrorCode INVALIDPARAMETER_INVALIDPHONENUMBER
-
INVALIDPARAMETER_INVALIDPORT
public static final CccErrorCode INVALIDPARAMETER_INVALIDPORT
-
INVALIDPARAMETER_SIPACCOUNTPASSWORDFORMAT
public static final CccErrorCode INVALIDPARAMETER_SIPACCOUNTPASSWORDFORMAT
-
INVALIDPARAMETER_SIPACCOUNTUSERFORMAT
public static final CccErrorCode INVALIDPARAMETER_SIPACCOUNTUSERFORMAT
-
INVALIDPARAMETER_SIPTRUNKINUSED
public static final CccErrorCode INVALIDPARAMETER_SIPTRUNKINUSED
-
INVALIDPARAMETER_SIPTRUNKNOTFOUND
public static final CccErrorCode INVALIDPARAMETER_SIPTRUNKNOTFOUND
-
INVALIDPARAMETERVALUE
public static final CccErrorCode INVALIDPARAMETERVALUE
-
INVALIDPARAMETERVALUE_ACCOUNTNOTEXIST
public static final CccErrorCode INVALIDPARAMETERVALUE_ACCOUNTNOTEXIST
-
INVALIDPARAMETERVALUE_INSTANCENOTEXIST
public static final CccErrorCode INVALIDPARAMETERVALUE_INSTANCENOTEXIST
-
INVALIDPARAMETERVALUE_PHONENUMISBOUNDOTHERACCOUNT
public static final CccErrorCode INVALIDPARAMETERVALUE_PHONENUMISBOUNDOTHERACCOUNT
-
INVALIDPARAMETERVALUE_RECORDNOTEXIST
public static final CccErrorCode INVALIDPARAMETERVALUE_RECORDNOTEXIST
-
INVALIDPARAMETERVALUE_SKILLGROUPERROR
public static final CccErrorCode INVALIDPARAMETERVALUE_SKILLGROUPERROR
-
INVALIDPARAMETERVALUE_SKILLGROUPEXIST
public static final CccErrorCode INVALIDPARAMETERVALUE_SKILLGROUPEXIST
-
LIMITEXCEEDED
public static final CccErrorCode LIMITEXCEEDED
-
LIMITEXCEEDED_OUTOFCOUNTLIMIT
public static final CccErrorCode LIMITEXCEEDED_OUTOFCOUNTLIMIT
-
OPERATIONDENIED_NOTINWHITELIST
public static final CccErrorCode OPERATIONDENIED_NOTINWHITELIST
-
UNKNOWNPARAMETER
public static final CccErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final CccErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static CccErrorCode[] 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 (CccErrorCode c : CccErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CccErrorCode 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
-
-