public enum ErrorCode extends Enum<ErrorCode>
| Enum Constant and Description |
|---|
CONTENT_TYPE_NOT_SUPPORTED |
INTERNAL_ERROR |
INVALID_AGENT_RESPONSE |
INVALID_PARAMS |
INVALID_REQUEST |
METHOD_NOT_FOUND |
PARSE_ERROR |
PUSH_NOTIFICATION_NOT_SUPPORTED |
TASK_NOT_CANCELABLE |
TASK_NOT_FOUND |
UNSUPPORTED_OPERATION |
| Modifier and Type | Method and Description |
|---|---|
static ErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCode PARSE_ERROR
public static final ErrorCode INVALID_REQUEST
public static final ErrorCode METHOD_NOT_FOUND
public static final ErrorCode INVALID_PARAMS
public static final ErrorCode INTERNAL_ERROR
public static final ErrorCode TASK_NOT_FOUND
public static final ErrorCode TASK_NOT_CANCELABLE
public static final ErrorCode PUSH_NOTIFICATION_NOT_SUPPORTED
public static final ErrorCode UNSUPPORTED_OPERATION
public static final ErrorCode INVALID_AGENT_RESPONSE
public static final ErrorCode CONTENT_TYPE_NOT_SUPPORTED
public static ErrorCode[] values()
for (ErrorCode c : ErrorCode.values()) System.out.println(c);
public static ErrorCode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025. All rights reserved.