|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<JsfPhaseId>
org.apache.myfaces.extensions.cdi.jsf.api.listener.phase.JsfPhaseId
public enum JsfPhaseId
It isn't possible to use the original implementation of JSF in combination with annotations
Enum Constant Summary | |
---|---|
ANY_PHASE
|
|
APPLY_REQUEST_VALUES
|
|
INVOKE_APPLICATION
|
|
PROCESS_VALIDATIONS
|
|
RENDER_RESPONSE
|
|
RESTORE_VIEW
|
|
UPDATE_MODEL_VALUES
|
Method Summary | |
---|---|
static JsfPhaseId |
convertFromFacesClass(javax.faces.event.PhaseId phaseId)
Converts the jsf implementation to the codi implementation |
static javax.faces.event.PhaseId |
convertToFacesClass(JsfPhaseId phaseId)
Converts the codi implementation to the jsf implementation |
static JsfPhaseId |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JsfPhaseId[] |
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 JsfPhaseId RESTORE_VIEW
public static final JsfPhaseId APPLY_REQUEST_VALUES
public static final JsfPhaseId PROCESS_VALIDATIONS
public static final JsfPhaseId UPDATE_MODEL_VALUES
public static final JsfPhaseId INVOKE_APPLICATION
public static final JsfPhaseId RENDER_RESPONSE
public static final JsfPhaseId ANY_PHASE
Method Detail |
---|
public static JsfPhaseId[] values()
for (JsfPhaseId c : JsfPhaseId.values()) System.out.println(c);
public static JsfPhaseId 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 nullpublic static javax.faces.event.PhaseId convertToFacesClass(JsfPhaseId phaseId)
phaseId
- current phase-id which has to be converted
public static JsfPhaseId convertFromFacesClass(javax.faces.event.PhaseId phaseId)
phaseId
- current phase-id which has to be converted
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |