Package org.gatein.pc.api
Enum LifeCyclePhase
- java.lang.Object
-
- java.lang.Enum<LifeCyclePhase>
-
- org.gatein.pc.api.LifeCyclePhase
-
- All Implemented Interfaces:
Serializable,Comparable<LifeCyclePhase>
public enum LifeCyclePhase extends Enum<LifeCyclePhase>
Enumerate the life cycle phase of a Portlet.- Version:
- $Revision: 630 $
- Author:
- Julien Viet
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LifeCyclePhasevalueOf(String name)Returns the enum constant of this type with the specified name.static LifeCyclePhase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTION
public static final LifeCyclePhase ACTION
-
EVENT
public static final LifeCyclePhase EVENT
-
RENDER
public static final LifeCyclePhase RENDER
-
RESOURCE
public static final LifeCyclePhase RESOURCE
-
-
Method Detail
-
values
public static LifeCyclePhase[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LifeCyclePhase c : LifeCyclePhase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LifeCyclePhase valueOf(String name)
Returns 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 nameNullPointerException- if the argument is null
-
-