java.lang.Object
javafx.beans.binding.When.BooleanConditionBuilder
- Enclosing class:
- When
public class When.BooleanConditionBuilder extends Object
An intermediate class needed while assembling the ternary expression. It
 should not be used in another context.
- Since:
- JavaFX 2.0
- 
Method SummaryModifier 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 Details- 
otherwiseDefines theObservableBooleanValuewhich value is returned by the ternary expression if the condition isfalse.- Parameters:
- otherwiseValue- the value
- Returns:
- the complete BooleanBinding
 
- 
otherwiseDefines a constant value of the ternary expression, that is returned if the condition isfalse.- Parameters:
- otherwiseValue- the value
- Returns:
- the complete BooleanBinding
 
 
-