Package com.vmware.vapi.std.errors
Enum Error.Type.Values
- java.lang.Object
-
- java.lang.Enum<Error.Type.Values>
-
- com.vmware.vapi.std.errors.Error.Type.Values
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Error.Type.Values>
- Enclosing class:
- Error.Type
public static enum Error.Type.Values extends java.lang.Enum<Error.Type.Values>
Native Javaenum
representing this enumeration class. Ordinals have no semantic meaning (your code should not rely on them).
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Error.Type.Values
valueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
ERROR
public static final Error.Type.Values ERROR
RepresentsError.Type.ERROR
.
-
ALREADY_EXISTS
public static final Error.Type.Values ALREADY_EXISTS
RepresentsError.Type.ALREADY_EXISTS
.
-
ALREADY_IN_DESIRED_STATE
public static final Error.Type.Values ALREADY_IN_DESIRED_STATE
RepresentsError.Type.ALREADY_IN_DESIRED_STATE
.
-
CANCELED
public static final Error.Type.Values CANCELED
RepresentsError.Type.CANCELED
.
-
CONCURRENT_CHANGE
public static final Error.Type.Values CONCURRENT_CHANGE
RepresentsError.Type.CONCURRENT_CHANGE
.
-
FEATURE_IN_USE
public static final Error.Type.Values FEATURE_IN_USE
RepresentsError.Type.FEATURE_IN_USE
.
-
INTERNAL_SERVER_ERROR
public static final Error.Type.Values INTERNAL_SERVER_ERROR
RepresentsError.Type.INTERNAL_SERVER_ERROR
.
-
INVALID_ARGUMENT
public static final Error.Type.Values INVALID_ARGUMENT
RepresentsError.Type.INVALID_ARGUMENT
.
-
INVALID_ELEMENT_CONFIGURATION
public static final Error.Type.Values INVALID_ELEMENT_CONFIGURATION
RepresentsError.Type.INVALID_ELEMENT_CONFIGURATION
.
-
INVALID_ELEMENT_TYPE
public static final Error.Type.Values INVALID_ELEMENT_TYPE
RepresentsError.Type.INVALID_ELEMENT_TYPE
.
-
INVALID_REQUEST
public static final Error.Type.Values INVALID_REQUEST
RepresentsError.Type.INVALID_REQUEST
.
-
NOT_ALLOWED_IN_CURRENT_STATE
public static final Error.Type.Values NOT_ALLOWED_IN_CURRENT_STATE
RepresentsError.Type.NOT_ALLOWED_IN_CURRENT_STATE
.
-
NOT_FOUND
public static final Error.Type.Values NOT_FOUND
RepresentsError.Type.NOT_FOUND
.
-
OPERATION_NOT_FOUND
public static final Error.Type.Values OPERATION_NOT_FOUND
RepresentsError.Type.OPERATION_NOT_FOUND
.
-
RESOURCE_BUSY
public static final Error.Type.Values RESOURCE_BUSY
RepresentsError.Type.RESOURCE_BUSY
.
-
RESOURCE_IN_USE
public static final Error.Type.Values RESOURCE_IN_USE
RepresentsError.Type.RESOURCE_IN_USE
.
-
RESOURCE_INACCESSIBLE
public static final Error.Type.Values RESOURCE_INACCESSIBLE
RepresentsError.Type.RESOURCE_INACCESSIBLE
.
-
SERVICE_UNAVAILABLE
public static final Error.Type.Values SERVICE_UNAVAILABLE
RepresentsError.Type.SERVICE_UNAVAILABLE
.
-
TIMED_OUT
public static final Error.Type.Values TIMED_OUT
RepresentsError.Type.TIMED_OUT
.
-
UNABLE_TO_ALLOCATE_RESOURCE
public static final Error.Type.Values UNABLE_TO_ALLOCATE_RESOURCE
RepresentsError.Type.UNABLE_TO_ALLOCATE_RESOURCE
.
-
UNAUTHENTICATED
public static final Error.Type.Values UNAUTHENTICATED
RepresentsError.Type.UNAUTHENTICATED
.
-
UNAUTHORIZED
public static final Error.Type.Values UNAUTHORIZED
RepresentsError.Type.UNAUTHORIZED
.
-
UNEXPECTED_INPUT
public static final Error.Type.Values UNEXPECTED_INPUT
RepresentsError.Type.UNEXPECTED_INPUT
.
-
UNSUPPORTED
public static final Error.Type.Values UNSUPPORTED
RepresentsError.Type.UNSUPPORTED
.
-
UNVERIFIED_PEER
public static final Error.Type.Values UNVERIFIED_PEER
RepresentsError.Type.UNVERIFIED_PEER
.
-
_UNKNOWN
public static final Error.Type.Values _UNKNOWN
Specialenum
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 Javaenum
lacks the new constant.
-
-
Method Detail
-
values
public static Error.Type.Values[] 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 (Error.Type.Values c : Error.Type.Values.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Error.Type.Values valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-