Uses of Enum Class
jakarta.faces.event.PhaseId
Packages that use PhaseId
-
Uses of PhaseId in jakarta.faces.component
Methods in jakarta.faces.component that return types with arguments of type PhaseIdModifier and TypeMethodDescriptionMap<PhaseId, List<FacesEvent>> UIViewRoot.getQueuedEvents()Returns an unmodifiable map of unmodifiable lists of faces events that have been queued so far.Methods in jakarta.faces.component with parameters of type PhaseIdModifier and TypeMethodDescriptionvoidUIViewRoot.broadcastEvents(FacesContext context, PhaseId phaseId) Broadcast any events that have been queued. -
Uses of PhaseId in jakarta.faces.context
Methods in jakarta.faces.context that return PhaseIdModifier and TypeMethodDescriptionFacesContext.getCurrentPhaseId()Return the value last set on thisFacesContextinstance whenFacesContext.setCurrentPhaseId(PhaseId)was called.FacesContextWrapper.getCurrentPhaseId()The default behavior of this method is to callFacesContext.getCurrentPhaseId()on the wrappedFacesContextobject.Methods in jakarta.faces.context with parameters of type PhaseIdModifier and TypeMethodDescriptionabstract voidPartialViewContext.processPartial(PhaseId phaseId) Perform lifecycle processing on components during the indicatedphaseId.voidPartialViewContextWrapper.processPartial(PhaseId phaseId) The default behavior of this method is to callPartialViewContext.processPartial(PhaseId)on the wrappedPartialViewContextobject.voidFacesContext.setCurrentPhaseId(PhaseId currentPhaseId) The implementation must call this method at the earliest possble point in time after entering into a new phase in the request processing lifecycle.voidFacesContextWrapper.setCurrentPhaseId(PhaseId currentPhaseId) The default behavior of this method is to callFacesContext.setCurrentPhaseId(PhaseId)on the wrappedFacesContextobject. -
Uses of PhaseId in jakarta.faces.event
Subclasses with type arguments of type PhaseId in jakarta.faces.eventModifier and TypeClassDescriptionenumEnum of the legal values that may be returned by thegetPhaseId()method of theFacesEventinterface.Fields in jakarta.faces.event with type parameters of type PhaseIdModifier and TypeFieldDescriptionPhaseId.VALUESList of validPhaseIdinstances, in ascending order of their ordinal value.Methods in jakarta.faces.event that return PhaseIdModifier and TypeMethodDescriptionExceptionQueuedEventContext.getPhaseId()Return thePhaseIdwhich was being processed when the exception was thrown.FacesEvent.getPhaseId()Return the identifier of the request processing phase during which this event should be delivered.PhaseEvent.getPhaseId()Return thePhaseIdrepresenting the current request processing lifecycle phase.PhaseListener.getPhaseId()Return the identifier of the request processing phase during which this listener is interested in processingPhaseEventevents.static PhaseIdPhaseId.phaseIdValueOf(String phase) Return aPhaseIdrepresentation of the argumentphase.AfterPhase.Literal.value()BeforePhase.Literal.value()static PhaseIdReturns the enum constant of this class with the specified name.static PhaseId[]PhaseId.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in jakarta.faces.event with parameters of type PhaseIdModifier and TypeMethodDescriptionstatic AfterPhase.Literalstatic BeforePhase.LiteralvoidFacesEvent.setPhaseId(PhaseId phaseId) Set thePhaseIdduring which this event will be delivered.Constructors in jakarta.faces.event with parameters of type PhaseIdModifierConstructorDescriptionExceptionQueuedEventContext(FacesContext context, Throwable thrown, UIComponent component, PhaseId phaseId) Instantiate a newExceptionQueuedEventContextthat indicates the argumentThrowablejust occurred, relevant to the argumentcomponent, during the lifecycle phasephaseId.PhaseEvent(FacesContext context, PhaseId phaseId, Lifecycle lifecycle) Construct a new event object from the specified parameters.