Uses of Class
jakarta.faces.application.ProjectStage
-
Packages that use ProjectStage Package Description jakarta.faces.application jakarta.faces.context -
-
Uses of ProjectStage in jakarta.faces.application
Methods in jakarta.faces.application that return ProjectStage Modifier and Type Method Description ProjectStage
Application. getProjectStage()
Return the project stage for the currently running application instance.ProjectStage
ApplicationWrapper. getProjectStage()
The default behavior of this method is to callApplication.getProjectStage()
on the wrappedApplication
object.static ProjectStage
ProjectStage. valueOf(String name)
Returns the enum constant of this type with the specified name.static ProjectStage[]
ProjectStage. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ProjectStage in jakarta.faces.context
Methods in jakarta.faces.context with parameters of type ProjectStage Modifier and Type Method Description boolean
FacesContext. isProjectStage(ProjectStage stage)
Returntrue
if the currentProjectStage
as returned by theApplication
instance is equal tostage
, otherwise returnfalse
boolean
FacesContextWrapper. isProjectStage(ProjectStage stage)
The default behavior of this method is to callFacesContext.isProjectStage(jakarta.faces.application.ProjectStage)
on the wrappedFacesContext
object.
-