- java.lang.Object
- 
- javafx.beans.binding.When.BooleanConditionBuilder
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleanBindingotherwise(boolean otherwiseValue)Defines a constant value of the ternary expression, that is returned if the condition isfalse.BooleanBindingotherwise(ObservableBooleanValue otherwiseValue)Defines theObservableBooleanValuewhich value is returned by the ternary expression if the condition isfalse.
 
- 
- 
- 
Method Detail- 
otherwisepublic BooleanBinding otherwise(ObservableBooleanValue otherwiseValue) Defines theObservableBooleanValuewhich value is returned by the ternary expression if the condition isfalse.- Parameters:
- otherwiseValue- the value
- Returns:
- the complete BooleanBinding
 
 - 
otherwisepublic BooleanBinding otherwise(boolean otherwiseValue) Defines a constant value of the ternary expression, that is returned if the condition isfalse.- Parameters:
- otherwiseValue- the value
- Returns:
- the complete BooleanBinding
 
 
- 
 
-