public static enum CacheEvent.TransformationState extends Enum<CacheEvent.TransformationState>
transformed.| Enum Constant and Description | 
|---|
NON_TRANSFORMABLE
Value used to indicate that an event is non-transformable and should not be passed to any transformer-based listeners. 
 | 
TRANSFORMABLE
Value used to indicate that an event is transformable and could be passed to transformer-based listeners. 
 | 
TRANSFORMED
Value used to indicate that an event has been transformed, and should only be passed to transformer-based listeners. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static CacheEvent.TransformationState | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static CacheEvent.TransformationState[] | 
values()
Returns an array containing the constants of this enum type, in the order they are declared. 
 | 
public static final CacheEvent.TransformationState NON_TRANSFORMABLE
public static final CacheEvent.TransformationState TRANSFORMABLE
public static final CacheEvent.TransformationState TRANSFORMED
public static CacheEvent.TransformationState[] values()
for (CacheEvent.TransformationState c : CacheEvent.TransformationState.values())
    System.out.println(c);
public static CacheEvent.TransformationState 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 null