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