org.apache.myfaces.extensions.cdi.jsf.api.listener.phase
Enum JsfPhaseId
java.lang.Object
java.lang.Enum<JsfPhaseId>
org.apache.myfaces.extensions.cdi.jsf.api.listener.phase.JsfPhaseId
- All Implemented Interfaces:
- Serializable, Comparable<JsfPhaseId>
public enum JsfPhaseId
- extends Enum<JsfPhaseId>
It isn't possible to use the original implementation of JSF in combination with annotations
- Author:
- Gerhard Petracek
RESTORE_VIEW
public static final JsfPhaseId RESTORE_VIEW
APPLY_REQUEST_VALUES
public static final JsfPhaseId APPLY_REQUEST_VALUES
PROCESS_VALIDATIONS
public static final JsfPhaseId PROCESS_VALIDATIONS
UPDATE_MODEL_VALUES
public static final JsfPhaseId UPDATE_MODEL_VALUES
INVOKE_APPLICATION
public static final JsfPhaseId INVOKE_APPLICATION
RENDER_RESPONSE
public static final JsfPhaseId RENDER_RESPONSE
ANY_PHASE
public static final JsfPhaseId ANY_PHASE
values
public static JsfPhaseId[] 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 (JsfPhaseId c : JsfPhaseId.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static JsfPhaseId 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 name
NullPointerException
- if the argument is null
convertToFacesClass
public static javax.faces.event.PhaseId convertToFacesClass(JsfPhaseId phaseId)
convertFromFacesClass
public static JsfPhaseId convertFromFacesClass(javax.faces.event.PhaseId phaseId)
Copyright © 2010-2011 The Apache Software Foundation. All Rights Reserved.