public enum ClientErrorCodeField extends Enum<ClientErrorCodeField> implements Valuable
| Modifier and Type | Class and Description |
|---|---|
static class |
ClientErrorCodeField.ClientErrorCodeFieldDeserializer |
static class |
ClientErrorCodeField.ClientErrorCodeFieldSerializer |
| Enum Constant and Description |
|---|
ACCEPTED |
BAD_REQUEST |
CONFLICT |
CREATED |
FORBIDDEN |
INSUFFICIENT_SCOPE |
INTERNAL_SERVER_ERROR |
ITEM_NAME_INVALID |
METHOD_NOT_ALLOWED |
NO_CONTENT |
NOT_FOUND |
NOT_MODIFIED |
PRECONDITION_FAILED |
REDIRECT |
TOO_MANY_REQUESTS |
UNAUTHORIZED |
UNAVAILABLE |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static ClientErrorCodeField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientErrorCodeField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientErrorCodeField CREATED
public static final ClientErrorCodeField ACCEPTED
public static final ClientErrorCodeField NO_CONTENT
public static final ClientErrorCodeField REDIRECT
public static final ClientErrorCodeField NOT_MODIFIED
public static final ClientErrorCodeField BAD_REQUEST
public static final ClientErrorCodeField UNAUTHORIZED
public static final ClientErrorCodeField FORBIDDEN
public static final ClientErrorCodeField NOT_FOUND
public static final ClientErrorCodeField METHOD_NOT_ALLOWED
public static final ClientErrorCodeField CONFLICT
public static final ClientErrorCodeField PRECONDITION_FAILED
public static final ClientErrorCodeField TOO_MANY_REQUESTS
public static final ClientErrorCodeField INTERNAL_SERVER_ERROR
public static final ClientErrorCodeField UNAVAILABLE
public static final ClientErrorCodeField ITEM_NAME_INVALID
public static final ClientErrorCodeField INSUFFICIENT_SCOPE
public static ClientErrorCodeField[] values()
for (ClientErrorCodeField c : ClientErrorCodeField.values()) System.out.println(c);
public static ClientErrorCodeField 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 null