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