java.lang.Object
javafx.beans.binding.When.BooleanConditionBuilder
- Enclosing class:
When
An intermediate class needed while assembling the ternary expression. It
should not be used in another context.
- Since:
- JavaFX 2.0
-
Method Summary
Modifier and TypeMethodDescriptionotherwise
(boolean otherwiseValue) Defines a constant value of the ternary expression, that is returned if the condition isfalse
.otherwise
(ObservableBooleanValue otherwiseValue) Defines theObservableBooleanValue
which value is returned by the ternary expression if the condition isfalse
.
-
Method Details
-
otherwise
Defines theObservableBooleanValue
which value is returned by the ternary expression if the condition isfalse
.- Parameters:
otherwiseValue
- the value- Returns:
- the complete
BooleanBinding
-
otherwise
Defines a constant value of the ternary expression, that is returned if the condition isfalse
.- Parameters:
otherwiseValue
- the value- Returns:
- the complete
BooleanBinding
-