Enum ElementEventType
java.lang.Object
java.lang.Enum<ElementEventType>
org.apache.commons.jcs3.engine.control.event.behavior.ElementEventType
- All Implemented Interfaces:
- Serializable,- Comparable<ElementEventType>
This describes the events that an item can encounter.
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionBackground expirationExpiration discovered on requestBackground expirationExpiration discovered on requestMoving from memory to disk (what if no disk?)Moving from memory to disk (what if no disk?)Moving from memory to disk, but item is not spoolable
- 
Method SummaryModifier and TypeMethodDescriptionstatic ElementEventTypeReturns the enum constant of this type with the specified name.static ElementEventType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
EXCEEDED_MAXLIFE_BACKGROUNDBackground expiration
- 
EXCEEDED_MAXLIFE_ONREQUESTExpiration discovered on request
- 
EXCEEDED_IDLETIME_BACKGROUNDBackground expiration
- 
EXCEEDED_IDLETIME_ONREQUESTExpiration discovered on request
- 
SPOOLED_DISK_AVAILABLEMoving from memory to disk (what if no disk?)
- 
SPOOLED_DISK_NOT_AVAILABLEMoving from memory to disk (what if no disk?)
- 
SPOOLED_NOT_ALLOWEDMoving from memory to disk, but item is not spoolable
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-