java.lang.Object
jakarta.faces.flow.SwitchCase
- Direct Known Subclasses:
 SwitchCaseImpl
 Represents a case within a switch node in the flow graph. See SwitchNode.
 
- Since:
 - 2.2
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionabstract BooleangetCondition(FacesContext context) Returntrueif this case should be taken,falseotherwise.abstract StringReturn the outcome to be used ifgetCondition(jakarta.faces.context.FacesContext)returntrue. 
- 
Constructor Details
- 
SwitchCase
public SwitchCase() 
 - 
 - 
Method Details
- 
getFromOutcome
Return the outcome to be used if
getCondition(jakarta.faces.context.FacesContext)returntrue.- Returns:
 - the outcome
 - Since:
 - 2.2
 
 - 
getCondition
Return
trueif this case should be taken,falseotherwise.- Parameters:
 context- theFacesContextfor the current request.- Returns:
 - a value indicating whether or not this condition should be taken
 - Since:
 - 2.2
 
 
 -