public enum StorageErrorCode extends Enum<StorageErrorCode>
Enum Constant and Description |
---|
ACCESS_DENIED
Access was denied (client-side error).
|
ACCOUNT_NOT_FOUND
The specified account was not found (client-side error).
|
AUTHENTICATION_FAILURE
An authentication error occurred (client-side error).
|
BAD_GATEWAY
There was an error with the gateway used for the request (client-side error).
|
BAD_REQUEST
The request was incorrect or badly formed (client-side error).
|
BLOB_ALREADY_EXISTS
The specified blob already exists (client-side error).
|
BLOB_NOT_FOUND
The specified blob was not found (client-side error).
|
CONDITION_FAILED
The specified condition failed (client-side error).
|
CONTAINER_ALREADY_EXISTS
The specified container already exists (client-side error).
|
CONTAINER_NOT_FOUND
The specified container was not found (client-side error).
|
HTTP_VERSION_NOT_SUPPORTED
The request version header is not supported (client-side error).
|
LEASE_ID_MISMATCH
The given lease ID does not match the current lease.
|
LEASE_ID_MISSING
A lease is required to perform the operation.
|
LEASE_NOT_PRESENT
A lease ID was used when no lease currently is held.
|
NONE
No error specified.
|
NOT_IMPLEMENTED
The requested operation is not implemented on the specified resource (client-side error).
|
RESOURCE_ALREADY_EXISTS
The specified resource already exists (client-side error).
|
RESOURCE_NOT_FOUND
The specified resource was not found (client-side error).
|
SERVER_BUSY
The server is currently unavailable.
|
SERVICE_BAD_REQUEST
The service returned a bad response (server-side error).
|
SERVICE_INTEGRITY_CHECK_FAILED
A service integrity check failed (server-side error).
|
SERVICE_INTERNAL_ERROR
An internal server error occurred (server-side error).
|
SERVICE_TIMEOUT
The service timed out (server-side error).
|
TRANSPORT_ERROR
A transport error occurred (server-side error).
|
Modifier and Type | Field and Description |
---|---|
int |
value
Returns the value of this enum.
|
Modifier and Type | Method and Description |
---|---|
static StorageErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StorageErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageErrorCode ACCESS_DENIED
public static final StorageErrorCode ACCOUNT_NOT_FOUND
public static final StorageErrorCode AUTHENTICATION_FAILURE
public static final StorageErrorCode BAD_GATEWAY
public static final StorageErrorCode BAD_REQUEST
public static final StorageErrorCode BLOB_ALREADY_EXISTS
public static final StorageErrorCode BLOB_NOT_FOUND
public static final StorageErrorCode CONDITION_FAILED
public static final StorageErrorCode CONTAINER_ALREADY_EXISTS
public static final StorageErrorCode CONTAINER_NOT_FOUND
public static final StorageErrorCode HTTP_VERSION_NOT_SUPPORTED
public static final StorageErrorCode NONE
public static final StorageErrorCode NOT_IMPLEMENTED
public static final StorageErrorCode RESOURCE_ALREADY_EXISTS
public static final StorageErrorCode RESOURCE_NOT_FOUND
public static final StorageErrorCode SERVICE_BAD_REQUEST
public static final StorageErrorCode SERVICE_INTEGRITY_CHECK_FAILED
public static final StorageErrorCode SERVICE_INTERNAL_ERROR
public static final StorageErrorCode SERVICE_TIMEOUT
public static final StorageErrorCode TRANSPORT_ERROR
public static final StorageErrorCode LEASE_ID_MISSING
public static final StorageErrorCode LEASE_ID_MISMATCH
public static final StorageErrorCode LEASE_NOT_PRESENT
public static final StorageErrorCode SERVER_BUSY
public static StorageErrorCode[] values()
for (StorageErrorCode c : StorageErrorCode.values()) System.out.println(c);
public static StorageErrorCode 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 © 2019. All rights reserved.