public static enum Error.Type.Values extends Enum<Error.Type.Values>
enum representing this enumeration class.
Ordinals have no semantic meaning (your code should not rely on them).
| Modifier and Type | Method and Description |
|---|---|
static Error.Type.Values |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Error.Type.Values[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Error.Type.Values ERROR
Error.Type.ERROR.public static final Error.Type.Values ALREADY_EXISTS
Error.Type.ALREADY_EXISTS.public static final Error.Type.Values ALREADY_IN_DESIRED_STATE
Error.Type.ALREADY_IN_DESIRED_STATE.public static final Error.Type.Values CANCELED
Error.Type.CANCELED.public static final Error.Type.Values CONCURRENT_CHANGE
Error.Type.CONCURRENT_CHANGE.public static final Error.Type.Values FEATURE_IN_USE
Error.Type.FEATURE_IN_USE.public static final Error.Type.Values INTERNAL_SERVER_ERROR
Error.Type.INTERNAL_SERVER_ERROR.public static final Error.Type.Values INVALID_ARGUMENT
Error.Type.INVALID_ARGUMENT.public static final Error.Type.Values INVALID_ELEMENT_CONFIGURATION
Error.Type.INVALID_ELEMENT_CONFIGURATION.public static final Error.Type.Values INVALID_ELEMENT_TYPE
Error.Type.INVALID_ELEMENT_TYPE.public static final Error.Type.Values INVALID_REQUEST
Error.Type.INVALID_REQUEST.public static final Error.Type.Values NOT_ALLOWED_IN_CURRENT_STATE
Error.Type.NOT_ALLOWED_IN_CURRENT_STATE.public static final Error.Type.Values NOT_FOUND
Error.Type.NOT_FOUND.public static final Error.Type.Values OPERATION_NOT_FOUND
Error.Type.OPERATION_NOT_FOUND.public static final Error.Type.Values RESOURCE_BUSY
Error.Type.RESOURCE_BUSY.public static final Error.Type.Values RESOURCE_IN_USE
Error.Type.RESOURCE_IN_USE.public static final Error.Type.Values RESOURCE_INACCESSIBLE
Error.Type.RESOURCE_INACCESSIBLE.public static final Error.Type.Values SERVICE_UNAVAILABLE
Error.Type.SERVICE_UNAVAILABLE.public static final Error.Type.Values TIMED_OUT
Error.Type.TIMED_OUT.public static final Error.Type.Values UNABLE_TO_ALLOCATE_RESOURCE
Error.Type.UNABLE_TO_ALLOCATE_RESOURCE.public static final Error.Type.Values UNAUTHENTICATED
Error.Type.UNAUTHENTICATED.public static final Error.Type.Values UNAUTHORIZED
Error.Type.UNAUTHORIZED.public static final Error.Type.Values UNEXPECTED_INPUT
Error.Type.UNEXPECTED_INPUT.public static final Error.Type.Values UNSUPPORTED
Error.Type.UNSUPPORTED.public static final Error.Type.Values UNVERIFIED_PEER
Error.Type.UNVERIFIED_PEER.public static final Error.Type.Values _UNKNOWN
enum constant which is used to represent constants
that do not exist in this enumeration binding. For example if a
client receives an enumeration constant that only exists in the
newer version of the API of the server, the client source code will
see it represented by _UNKNOWN constant, because its version
of the native Java enum lacks the new constant.public static Error.Type.Values[] values()
for (Error.Type.Values c : Error.Type.Values.values()) System.out.println(c);
public static Error.Type.Values 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 © 2023. All rights reserved.