Uses of Class
javafx.beans.binding.BooleanBinding
-
Uses of BooleanBinding in javafx.beans.binding
Modifier and TypeMethodDescriptionstatic BooleanBinding
Bindings.and
(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates aBooleanBinding
that calculates the conditional-AND operation on the value of two instance ofObservableBooleanValue
.BooleanExpression.and
(ObservableBooleanValue other) Creates a newBooleanExpression
that performs the conditional AND-operation on thisBooleanExpression
and aObservableBooleanValue
.static BooleanBinding
Bindings.createBooleanBinding
(Callable<Boolean> func, Observable... dependencies) Helper function to create a customBooleanBinding
.static <E> BooleanBinding
Bindings.isEmpty
(ObservableList<E> op) static BooleanBinding
Bindings.not
(ObservableBooleanValue op) Creates aBooleanBinding
that calculates the inverse of the value of aObservableBooleanValue
.BooleanExpression.not()
Creates a newBooleanExpression
that calculates the negation of thisBooleanExpression
.