- java.lang.Object
-
- javafx.beans.binding.When.BooleanConditionBuilder
-
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 BooleanBinding
otherwise(boolean otherwiseValue)
定义三元表达式的常量值,如果条件为false
则返回。BooleanBinding
otherwise(ObservableBooleanValue otherwiseValue)
定义ObservableBooleanValue
如果条件为false
, 则该值由三元表达式返回。
-
-
-
方法详细信息
-
otherwise
public BooleanBinding otherwise(ObservableBooleanValue otherwiseValue)
定义ObservableBooleanValue
如果条件为false
,那么三元表达式返回哪个值。- 参数
-
otherwiseValue
- 值 - 结果
-
完整的
BooleanBinding
-
otherwise
public BooleanBinding otherwise(boolean otherwiseValue)
定义三元表达式的常量值,如果条件为false
则返回。- 参数
-
otherwiseValue
- 值 - 结果
-
完整的
BooleanBinding
-
-