public static enum ExternalCacheDetails.BufferPolicy extends Enum<ExternalCacheDetails.BufferPolicy>
ExternalCache instances.| Enum Constant and Description |
|---|
FULLY
Corresponds to
TransactionalExternalCache. |
NEVER
Corresponds to
DirectExternalCache. |
READ_ONLY
Corresponds to
StableReadExternalCache. |
| Modifier and Type | Method and Description |
|---|---|
static ExternalCacheDetails.BufferPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExternalCacheDetails.BufferPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalCacheDetails.BufferPolicy NEVER
DirectExternalCache.public static final ExternalCacheDetails.BufferPolicy READ_ONLY
StableReadExternalCache.public static final ExternalCacheDetails.BufferPolicy FULLY
TransactionalExternalCache.public static ExternalCacheDetails.BufferPolicy[] values()
for (ExternalCacheDetails.BufferPolicy c : ExternalCacheDetails.BufferPolicy.values()) System.out.println(c);
public static ExternalCacheDetails.BufferPolicy 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.