public static enum CacheOperationOutcomes.SearchOutcome extends Enum<CacheOperationOutcomes.SearchOutcome>
Enum Constant and Description |
---|
EXCEPTION
exception.
|
SUCCESS
success.
|
Modifier and Type | Method and Description |
---|---|
static CacheOperationOutcomes.SearchOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheOperationOutcomes.SearchOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheOperationOutcomes.SearchOutcome SUCCESS
public static final CacheOperationOutcomes.SearchOutcome EXCEPTION
public static CacheOperationOutcomes.SearchOutcome[] values()
for (CacheOperationOutcomes.SearchOutcome c : CacheOperationOutcomes.SearchOutcome.values()) System.out.println(c);
public static CacheOperationOutcomes.SearchOutcome 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.