public static enum ExternalCacheException.Reason extends Enum<ExternalCacheException.Reason>
| Enum Constant and Description |
|---|
MARSHALLER_FAILURE
Operation failed due a
Marshaller failure. |
NETWORK_FAILURE
Operation failed due to a network error.
|
TIMEOUT
Operation timed out.
|
UNCLASSIFIED_FAILURE
Operation failed due to an unclassified failure.
|
| Modifier and Type | Method and Description |
|---|---|
static ExternalCacheException.Reason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExternalCacheException.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalCacheException.Reason TIMEOUT
public static final ExternalCacheException.Reason NETWORK_FAILURE
public static final ExternalCacheException.Reason MARSHALLER_FAILURE
Marshaller failure.public static final ExternalCacheException.Reason UNCLASSIFIED_FAILURE
public static ExternalCacheException.Reason[] values()
for (ExternalCacheException.Reason c : ExternalCacheException.Reason.values()) System.out.println(c);
public static ExternalCacheException.Reason 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 © 2015 Atlassian. All rights reserved.