public enum ActionExecutionStatus extends Enum<ActionExecutionStatus>
| Enum Constant and Description | 
|---|
ABORTED
An actionInterceptor aborted execution during before() 
 | 
EXCEPTION
The Action threw an exception during its execution 
 | 
OK
The Action was successfully executed 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ActionExecutionStatus | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ActionExecutionStatus[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ActionExecutionStatus OK
public static final ActionExecutionStatus ABORTED
public static final ActionExecutionStatus EXCEPTION
public static ActionExecutionStatus[] values()
for (ActionExecutionStatus c : ActionExecutionStatus.values()) System.out.println(c);
public static ActionExecutionStatus 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