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 BooleanBinding
Bindings.isEmpty
(ObservableStringValue op) static <E> BooleanBinding
Bindings.isEmpty
(ObservableList<E> op) StringExpression.isEmpty()
static BooleanBinding
Bindings.isNotEmpty
(ObservableStringValue op) StringExpression.isNotEmpty()
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
.static BooleanBinding
Bindings.or
(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates aBooleanBinding
that calculates the conditional-AND operation on the value of two instance ofObservableBooleanValue
.BooleanExpression.or
(ObservableBooleanValue other) Creates a newBooleanExpression
that performs the conditional OR-operation on thisBooleanExpression
and aObservableBooleanValue
.