public static enum BlockingCacheOperationOutcomes.GetOutcome extends Enum<BlockingCacheOperationOutcomes.GetOutcome>
BlockingCache gets| Enum Constant and Description |
|---|
HIT
Blocking Cache Hit.
|
MISS_AND_LOCKED
Blocking Cache Miss and left locked.
|
| Modifier and Type | Method and Description |
|---|---|
static BlockingCacheOperationOutcomes.GetOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockingCacheOperationOutcomes.GetOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockingCacheOperationOutcomes.GetOutcome HIT
public static final BlockingCacheOperationOutcomes.GetOutcome MISS_AND_LOCKED
public static BlockingCacheOperationOutcomes.GetOutcome[] values()
for (BlockingCacheOperationOutcomes.GetOutcome c : BlockingCacheOperationOutcomes.GetOutcome.values()) System.out.println(c);
public static BlockingCacheOperationOutcomes.GetOutcome 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 2001-2021, Terracotta, Inc.