Enum LcicErrorCode
- java.lang.Object
-
- java.lang.Enum<LcicErrorCode>
-
- com.tencentcloudapi.lcic.v20220817.LcicErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<LcicErrorCode>
public enum LcicErrorCode extends Enum<LcicErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static LcicErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static LcicErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final LcicErrorCode AUTHFAILURE
-
DRYRUNOPERATION
public static final LcicErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final LcicErrorCode FAILEDOPERATION
-
FAILEDOPERATION_CLASSENDED
public static final LcicErrorCode FAILEDOPERATION_CLASSENDED
-
FAILEDOPERATION_CLASSEXPIRED
public static final LcicErrorCode FAILEDOPERATION_CLASSEXPIRED
-
FAILEDOPERATION_CLASSSTARTED
public static final LcicErrorCode FAILEDOPERATION_CLASSSTARTED
-
FAILEDOPERATION_CLASSTOOLONG
public static final LcicErrorCode FAILEDOPERATION_CLASSTOOLONG
-
FAILEDOPERATION_IMAGEARGINVALID
public static final LcicErrorCode FAILEDOPERATION_IMAGEARGINVALID
-
FAILEDOPERATION_ORIGINIDEXISTS
public static final LcicErrorCode FAILEDOPERATION_ORIGINIDEXISTS
-
FAILEDOPERATION_REQUESTTIMEDOUT
public static final LcicErrorCode FAILEDOPERATION_REQUESTTIMEDOUT
-
FAILEDOPERATION_ROOMNOTEND
public static final LcicErrorCode FAILEDOPERATION_ROOMNOTEND
-
FAILEDOPERATION_USERISALREADYINGROUP
public static final LcicErrorCode FAILEDOPERATION_USERISALREADYINGROUP
-
INTERNALERROR
public static final LcicErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final LcicErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_CONTENT
public static final LcicErrorCode INVALIDPARAMETER_CONTENT
-
INVALIDPARAMETER_CSSORJS
public static final LcicErrorCode INVALIDPARAMETER_CSSORJS
-
INVALIDPARAMETER_ENDTIME
public static final LcicErrorCode INVALIDPARAMETER_ENDTIME
-
INVALIDPARAMETER_GROUPMEMBEROVERLIMIT
public static final LcicErrorCode INVALIDPARAMETER_GROUPMEMBEROVERLIMIT
-
INVALIDPARAMETER_GROUPPARAMINVALID
public static final LcicErrorCode INVALIDPARAMETER_GROUPPARAMINVALID
-
INVALIDPARAMETER_GROUPTEACHERNOTMEMBER
public static final LcicErrorCode INVALIDPARAMETER_GROUPTEACHERNOTMEMBER
-
INVALIDPARAMETER_GROUPTEACHERSNOTEXIST
public static final LcicErrorCode INVALIDPARAMETER_GROUPTEACHERSNOTEXIST
-
INVALIDPARAMETER_GROUPTYPEINVALID
public static final LcicErrorCode INVALIDPARAMETER_GROUPTYPEINVALID
-
INVALIDPARAMETER_ROOMTYPEINVALID
public static final LcicErrorCode INVALIDPARAMETER_ROOMTYPEINVALID
-
INVALIDPARAMETER_SDKAPPID
public static final LcicErrorCode INVALIDPARAMETER_SDKAPPID
-
INVALIDPARAMETER_STARTTIME
public static final LcicErrorCode INVALIDPARAMETER_STARTTIME
-
INVALIDPARAMETERVALUE
public static final LcicErrorCode INVALIDPARAMETERVALUE
-
LIMITEXCEEDED
public static final LcicErrorCode LIMITEXCEEDED
-
MISSINGPARAMETER
public static final LcicErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final LcicErrorCode OPERATIONDENIED
-
REGIONERROR
public static final LcicErrorCode REGIONERROR
-
REQUESTLIMITEXCEEDED
public static final LcicErrorCode REQUESTLIMITEXCEEDED
-
RESOURCEINUSE
public static final LcicErrorCode RESOURCEINUSE
-
RESOURCEINSUFFICIENT
public static final LcicErrorCode RESOURCEINSUFFICIENT
-
RESOURCEINSUFFICIENT_RECORD
public static final LcicErrorCode RESOURCEINSUFFICIENT_RECORD
-
RESOURCEINSUFFICIENT_ROOM
public static final LcicErrorCode RESOURCEINSUFFICIENT_ROOM
-
RESOURCENOTFOUND
public static final LcicErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_DOCUMENT
public static final LcicErrorCode RESOURCENOTFOUND_DOCUMENT
-
RESOURCENOTFOUND_GROUPNOTEXIST
public static final LcicErrorCode RESOURCENOTFOUND_GROUPNOTEXIST
-
RESOURCENOTFOUND_GROUPPARTUSERSNOTEXIST
public static final LcicErrorCode RESOURCENOTFOUND_GROUPPARTUSERSNOTEXIST
-
RESOURCENOTFOUND_ROOM
public static final LcicErrorCode RESOURCENOTFOUND_ROOM
-
RESOURCENOTFOUND_USER
public static final LcicErrorCode RESOURCENOTFOUND_USER
-
RESOURCEUNAVAILABLE
public static final LcicErrorCode RESOURCEUNAVAILABLE
-
RESOURCEUNAVAILABLE_ROOMSTATISTICS
public static final LcicErrorCode RESOURCEUNAVAILABLE_ROOMSTATISTICS
-
RESOURCESSOLDOUT
public static final LcicErrorCode RESOURCESSOLDOUT
-
UNAUTHORIZEDOPERATION
public static final LcicErrorCode UNAUTHORIZEDOPERATION
-
UNKNOWNPARAMETER
public static final LcicErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final LcicErrorCode UNSUPPORTEDOPERATION
-
-
Method Detail
-
values
public static LcicErrorCode[] 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 (LcicErrorCode c : LcicErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LcicErrorCode 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
-
-