Uses of Interface
javafx.beans.value.ObservableBooleanValue
Package
Description
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources.The package
javafx.beans.property
defines read-only
properties and writable properties, plus a number of implementations.Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property
.Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
-
Uses of ObservableBooleanValue in javafx.beans.binding
Modifier and TypeClassDescriptionclass
Base class that provides most of the functionality needed to implement aBinding
of aboolean
value.class
BooleanExpression
is anObservableBooleanValue
plus additional convenience methods to generate bindings in a fluent style.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 BooleanExpression
BooleanExpression.booleanExpression
(ObservableBooleanValue value) Returns aBooleanExpression
that wraps aObservableBooleanValue
.static BooleanBinding
Bindings.equal
(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableBooleanValue
are equal.BooleanExpression.isEqualTo
(ObservableBooleanValue other) Creates a newBooleanExpression
that holdstrue
if this and anotherObservableBooleanValue
are equal.BooleanExpression.isNotEqualTo
(ObservableBooleanValue other) Creates a newBooleanExpression
that holdstrue
if this and anotherObservableBooleanValue
are equal.static BooleanBinding
Bindings.not
(ObservableBooleanValue op) Creates aBooleanBinding
that calculates the inverse of the value of aObservableBooleanValue
.static BooleanBinding
Bindings.notEqual
(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableBooleanValue
are not equal.static BooleanBinding
Bindings.or
(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates aBooleanBinding
that calculates the conditional-OR 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
.When.BooleanConditionBuilder.otherwise
(ObservableBooleanValue otherwiseValue) Defines theObservableBooleanValue
which value is returned by the ternary expression if the condition isfalse
.When.then
(ObservableBooleanValue thenValue) Defines theObservableBooleanValue
which value is returned by the ternary expression if the condition istrue
.static When
Bindings.when
(ObservableBooleanValue condition) Creates a binding that calculates the result of a ternary expression. -
Uses of ObservableBooleanValue in javafx.beans.property
Modifier and TypeClassDescriptionclass
This class provides a full implementation of aProperty
wrapping aboolean
value.class
The classBooleanPropertyBase
is the base class for a property wrapping aboolean
value.class
Superclass for all readonly properties wrapping aboolean
.class
Base class for all readonly properties wrapping aboolean
.class
This class provides a convenient class to define read-only properties.class
This class provides a full implementation of aProperty
wrapping aboolean
value. -
Uses of ObservableBooleanValue in javafx.beans.property.adapter
Modifier and TypeClassDescriptionfinal class
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
.final class
AReadOnlyJavaBeanBooleanProperty
provides an adapter between a regular read only Java Bean property of typeboolean
orBoolean
and a JavaFXReadOnlyBooleanProperty
. -
Uses of ObservableBooleanValue in javafx.css
Modifier and TypeClassDescriptionclass
This class extendsSimpleBooleanProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.