|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LifecycleStage>
net.sourceforge.stripes.controller.LifecycleStage
public enum LifecycleStage
Describes the major stages that form the Stripes request processing lifecycle. These stages
are enumerated here primarily because they are the points around which execution can be
intercepted using the Stripes Interceptor
system.
Enum Constant Summary | |
---|---|
ActionBeanResolution
First major lifecycle stage. |
|
BindingAndValidation
Third major lifecycle stage. |
|
CustomValidation
Fourth major lifecycle stage. |
|
EventHandling
Fifth major lifecycle stage. |
|
HandlerResolution
Second major lifecycle stage. |
|
RequestComplete
Final lifecycle stage. |
|
RequestInit
Executed before any processing occurs on the request. |
|
ResolutionExecution
Sixth major lifecycle stage. |
Method Summary | |
---|---|
static LifecycleStage |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LifecycleStage[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final LifecycleStage ActionBeanResolution
public static final LifecycleStage HandlerResolution
public static final LifecycleStage BindingAndValidation
public static final LifecycleStage CustomValidation
public static final LifecycleStage EventHandling
public static final LifecycleStage ResolutionExecution
public static final LifecycleStage RequestInit
public static final LifecycleStage RequestComplete
Method Detail |
---|
public static LifecycleStage[] values()
for (LifecycleStage c : LifecycleStage.values()) System.out.println(c);
public static LifecycleStage valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |