public static enum StoreOperationOutcomes.ComputeOutcome extends java.lang.Enum<StoreOperationOutcomes.ComputeOutcome> implements StoreOperationOutcomes
StoreOperationOutcomes.ComputeIfAbsentOutcome, StoreOperationOutcomes.ComputeOutcome, StoreOperationOutcomes.ConditionalRemoveOutcome, StoreOperationOutcomes.ConditionalReplaceOutcome, StoreOperationOutcomes.EvictionOutcome, StoreOperationOutcomes.ExpirationOutcome, StoreOperationOutcomes.GetOutcome, StoreOperationOutcomes.PutIfAbsentOutcome, StoreOperationOutcomes.PutOutcome, StoreOperationOutcomes.RemoveOutcome, StoreOperationOutcomes.ReplaceOutcome
Enum Constant and Description |
---|
HIT
hit
|
MISS
miss
|
PUT
put
|
REMOVED
removed
|
Modifier and Type | Method and Description |
---|---|
static StoreOperationOutcomes.ComputeOutcome |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StoreOperationOutcomes.ComputeOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StoreOperationOutcomes.ComputeOutcome HIT
public static final StoreOperationOutcomes.ComputeOutcome MISS
public static final StoreOperationOutcomes.ComputeOutcome PUT
public static final StoreOperationOutcomes.ComputeOutcome REMOVED
public static StoreOperationOutcomes.ComputeOutcome[] values()
for (StoreOperationOutcomes.ComputeOutcome c : StoreOperationOutcomes.ComputeOutcome.values()) System.out.println(c);
public static StoreOperationOutcomes.ComputeOutcome valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null