Uses of Class
javafx.beans.binding.BooleanBinding
Packages that use BooleanBinding
-
Uses of BooleanBinding in javafx.beans.binding
Methods in javafx.beans.binding that return BooleanBindingModifier and TypeMethodDescriptionstatic BooleanBindingBindings.and(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates aBooleanBindingthat calculates the conditional-AND operation on the value of two instance ofObservableBooleanValue.BooleanExpression.and(ObservableBooleanValue other) Creates a newBooleanExpressionthat performs the conditional AND-operation on thisBooleanExpressionand aObservableBooleanValue.static BooleanBindingBindings.createBooleanBinding(Callable<Boolean> func, Observable... dependencies) Helper function to create a customBooleanBinding.static BooleanBindingBindings.isEmpty(ObservableStringValue op) static <E> BooleanBindingBindings.isEmpty(ObservableList<E> op) StringExpression.isEmpty()static BooleanBindingBindings.isNotEmpty(ObservableStringValue op) StringExpression.isNotEmpty()static BooleanBindingBindings.not(ObservableBooleanValue op) Creates aBooleanBindingthat calculates the inverse of the value of aObservableBooleanValue.BooleanExpression.not()Creates a newBooleanExpressionthat calculates the negation of thisBooleanExpression.static BooleanBindingBindings.or(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates aBooleanBindingthat calculates the conditional-AND operation on the value of two instance ofObservableBooleanValue.BooleanExpression.or(ObservableBooleanValue other) Creates a newBooleanExpressionthat performs the conditional OR-operation on thisBooleanExpressionand aObservableBooleanValue.