public static enum CacheOperationOutcomes.GetAllOutcome extends Enum<CacheOperationOutcomes.GetAllOutcome>
Enum Constant and Description |
---|
ALL_HIT
all hit.
|
ALL_MISS
all miss.
|
PARTIAL
partial.
|
Modifier and Type | Method and Description |
---|---|
static CacheOperationOutcomes.GetAllOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheOperationOutcomes.GetAllOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheOperationOutcomes.GetAllOutcome ALL_MISS
public static final CacheOperationOutcomes.GetAllOutcome ALL_HIT
public static final CacheOperationOutcomes.GetAllOutcome PARTIAL
public static CacheOperationOutcomes.GetAllOutcome[] values()
for (CacheOperationOutcomes.GetAllOutcome c : CacheOperationOutcomes.GetAllOutcome.values()) System.out.println(c);
public static CacheOperationOutcomes.GetAllOutcome 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 © 2003–2016 Terracotta, Inc.. All rights reserved.