Enum GmeErrorCode
- java.lang.Object
-
- java.lang.Enum<GmeErrorCode>
-
- com.tencentcloudapi.gme.v20180711.GmeErrorCode
-
- All Implemented Interfaces:
Serializable,Comparable<GmeErrorCode>
public enum GmeErrorCode extends Enum<GmeErrorCode>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetValue()static GmeErrorCodevalueOf(String name)Returns the enum constant of this type with the specified name.static GmeErrorCode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHFAILURE
public static final GmeErrorCode AUTHFAILURE
-
DRYRUNOPERATION
public static final GmeErrorCode DRYRUNOPERATION
-
FAILEDOPERATION
public static final GmeErrorCode FAILEDOPERATION
-
FAILEDOPERATION_LOGINFAILED
public static final GmeErrorCode FAILEDOPERATION_LOGINFAILED
-
FAILEDOPERATION_USERFEENEGATIVE
public static final GmeErrorCode FAILEDOPERATION_USERFEENEGATIVE
-
INTERNALERROR
public static final GmeErrorCode INTERNALERROR
-
INVALIDPARAMETER
public static final GmeErrorCode INVALIDPARAMETER
-
INVALIDPARAMETER_CALLBACKADDRESS
public static final GmeErrorCode INVALIDPARAMETER_CALLBACKADDRESS
-
INVALIDPARAMETER_DATEINVALID
public static final GmeErrorCode INVALIDPARAMETER_DATEINVALID
-
INVALIDPARAMETER_DATEOUTOFSIXTYDAYS
public static final GmeErrorCode INVALIDPARAMETER_DATEOUTOFSIXTYDAYS
-
INVALIDPARAMETER_TAGKEY
public static final GmeErrorCode INVALIDPARAMETER_TAGKEY
-
INVALIDPARAMETER_TIMERANGEERROR
public static final GmeErrorCode INVALIDPARAMETER_TIMERANGEERROR
-
INVALIDPARAMETERVALUE_INVALIDBIZID
public static final GmeErrorCode INVALIDPARAMETERVALUE_INVALIDBIZID
-
INVALIDPARAMETERVALUE_INVALIDDELETETYPE
public static final GmeErrorCode INVALIDPARAMETERVALUE_INVALIDDELETETYPE
-
INVALIDPARAMETERVALUE_INVALIDRECORDMODE
public static final GmeErrorCode INVALIDPARAMETERVALUE_INVALIDRECORDMODE
-
INVALIDPARAMETERVALUE_INVALIDROOMID
public static final GmeErrorCode INVALIDPARAMETERVALUE_INVALIDROOMID
-
INVALIDPARAMETERVALUE_INVALIDSUBSCRIBERECORDUSERIDS
public static final GmeErrorCode INVALIDPARAMETERVALUE_INVALIDSUBSCRIBERECORDUSERIDS
-
INVALIDPARAMETERVALUE_INVALIDSUBSCRIBEUSERIDS
public static final GmeErrorCode INVALIDPARAMETERVALUE_INVALIDSUBSCRIBEUSERIDS
-
INVALIDPARAMETERVALUE_INVALIDTASKID
public static final GmeErrorCode INVALIDPARAMETERVALUE_INVALIDTASKID
-
INVALIDPARAMETERVALUE_INVALIDUNSUBSCRIBEUSERIDS
public static final GmeErrorCode INVALIDPARAMETERVALUE_INVALIDUNSUBSCRIBEUSERIDS
-
LIMITEXCEEDED
public static final GmeErrorCode LIMITEXCEEDED
-
LIMITEXCEEDED_APPLICATION
public static final GmeErrorCode LIMITEXCEEDED_APPLICATION
-
MISSINGPARAMETER
public static final GmeErrorCode MISSINGPARAMETER
-
OPERATIONDENIED
public static final GmeErrorCode OPERATIONDENIED
-
RESOURCEINUSE_TASKINUSE
public static final GmeErrorCode RESOURCEINUSE_TASKINUSE
-
RESOURCEINSUFFICIENT
public static final GmeErrorCode RESOURCEINSUFFICIENT
-
RESOURCENOTFOUND
public static final GmeErrorCode RESOURCENOTFOUND
-
RESOURCENOTFOUND_BIZIDISNOTFOUND
public static final GmeErrorCode RESOURCENOTFOUND_BIZIDISNOTFOUND
-
RESOURCENOTFOUND_ROOMNOTFOUND
public static final GmeErrorCode RESOURCENOTFOUND_ROOMNOTFOUND
-
RESOURCENOTFOUND_TASKNOTFOUND
public static final GmeErrorCode RESOURCENOTFOUND_TASKNOTFOUND
-
RESOURCEUNAVAILABLE
public static final GmeErrorCode RESOURCEUNAVAILABLE
-
RESOURCESSOLDOUT
public static final GmeErrorCode RESOURCESSOLDOUT
-
UNAUTHORIZEDOPERATION
public static final GmeErrorCode UNAUTHORIZEDOPERATION
-
UNAUTHORIZEDOPERATION_CREATEAPPDENIED
public static final GmeErrorCode UNAUTHORIZEDOPERATION_CREATEAPPDENIED
-
UNAUTHORIZEDOPERATION_UNREALNAMEAUTH
public static final GmeErrorCode UNAUTHORIZEDOPERATION_UNREALNAMEAUTH
-
UNKNOWNPARAMETER
public static final GmeErrorCode UNKNOWNPARAMETER
-
UNSUPPORTEDOPERATION
public static final GmeErrorCode UNSUPPORTEDOPERATION
-
UNSUPPORTEDOPERATION_PTTSWITCHOFF
public static final GmeErrorCode UNSUPPORTEDOPERATION_PTTSWITCHOFF
-
UNSUPPORTEDOPERATION_SERVICENOTOPENED
public static final GmeErrorCode UNSUPPORTEDOPERATION_SERVICENOTOPENED
-
-
Method Detail
-
values
public static GmeErrorCode[] 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 (GmeErrorCode c : GmeErrorCode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GmeErrorCode 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
-
-