public enum ExecutionPhase extends Enum<ExecutionPhase>
| Enum Constant and Description |
|---|
EXECUTE_EXECUTABLE
Phase in which the actual element is executed.
|
EXECUTION_FINISH
Fired when execution has finished.
|
EXECUTION_START
Fired when execution starts.
|
POST_EXECUTABLE_EXECUTION
Called after the scheduled element has finished executing.
|
POST_PROCESS
Allows elements in the element tree to do post processing of the inserted data.
|
PRE_EXECUTABLE_EXECUTION
Fired before the next element gets executed.
|
PRE_PROCESS
Called on the element tree to let elements and handlers do stuff prior to element execution.
|
SESSION_FINISH
Event fired before a session gets closed.
|
SESSION_START
Fired after a new session has been created.
|
| Modifier and Type | Method and Description |
|---|---|
static ExecutionPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionPhase EXECUTION_START
public static final ExecutionPhase SESSION_START
public static final ExecutionPhase PRE_EXECUTABLE_EXECUTION
public static final ExecutionPhase PRE_PROCESS
public static final ExecutionPhase EXECUTE_EXECUTABLE
public static final ExecutionPhase POST_PROCESS
public static final ExecutionPhase POST_EXECUTABLE_EXECUTION
public static final ExecutionPhase SESSION_FINISH
public static final ExecutionPhase EXECUTION_FINISH
public static ExecutionPhase[] values()
for (ExecutionPhase c : ExecutionPhase.values()) System.out.println(c);
public static ExecutionPhase 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 © 2012. All Rights Reserved.