Uses of Interface
javafx.beans.value.ObservableBooleanValue
Package | Description |
---|---|
javafx.beans.binding |
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources. |
javafx.beans.property |
The package
javafx.beans.property defines read-only
properties and writable properties, plus a number of implementations. |
javafx.beans.property.adapter |
Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property . |
javafx.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
-
Uses of ObservableBooleanValue in javafx.beans.binding
Classes in javafx.beans.binding that implement ObservableBooleanValue Modifier and Type Class Description class
BooleanBinding
Base class that provides most of the functionality needed to implement aBinding
of aboolean
value.class
BooleanExpression
BooleanExpression
is anObservableBooleanValue
plus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding with parameters of type ObservableBooleanValue Modifier and Type Method Description static BooleanBinding
Bindings. and(ObservableBooleanValue op1, ObservableBooleanValue op2)
Creates aBooleanBinding
that calculates the conditional-AND operation on the value of two instance ofObservableBooleanValue
.BooleanBinding
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.BooleanBinding
BooleanExpression. isEqualTo(ObservableBooleanValue other)
Creates a newBooleanExpression
that holdstrue
if this and anotherObservableBooleanValue
are equal.BooleanBinding
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
.BooleanBinding
BooleanExpression. or(ObservableBooleanValue other)
Creates a newBooleanExpression
that performs the conditional OR-operation on thisBooleanExpression
and aObservableBooleanValue
.BooleanBinding
When.BooleanConditionBuilder. otherwise(ObservableBooleanValue otherwiseValue)
Defines theObservableBooleanValue
which value is returned by the ternary expression if the condition isfalse
.When.BooleanConditionBuilder
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.Constructors in javafx.beans.binding with parameters of type ObservableBooleanValue Constructor Description When(ObservableBooleanValue condition)
The constructor ofWhen
. -
Uses of ObservableBooleanValue in javafx.beans.property
Classes in javafx.beans.property that implement ObservableBooleanValue Modifier and Type Class Description class
BooleanProperty
This class provides a full implementation of aProperty
wrapping aboolean
value.class
BooleanPropertyBase
The classBooleanPropertyBase
is the base class for a property wrapping aboolean
value.class
ReadOnlyBooleanProperty
Superclass for all readonly properties wrapping aboolean
.class
ReadOnlyBooleanPropertyBase
Base class for all readonly properties wrapping aboolean
.class
ReadOnlyBooleanWrapper
This class provides a convenient class to define read-only properties.class
SimpleBooleanProperty
This class provides a full implementation of aProperty
wrapping aboolean
value. -
Uses of ObservableBooleanValue in javafx.beans.property.adapter
Classes in javafx.beans.property.adapter that implement ObservableBooleanValue Modifier and Type Class Description class
JavaBeanBooleanProperty
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
.class
ReadOnlyJavaBeanBooleanProperty
AReadOnlyJavaBeanBooleanProperty
provides an adapter between a regular read only Java Bean property of typeboolean
orBoolean
and a JavaFXReadOnlyBooleanProperty
. -
Uses of ObservableBooleanValue in javafx.css
Classes in javafx.css that implement ObservableBooleanValue Modifier and Type Class Description class
SimpleStyleableBooleanProperty
This class extendsSimpleBooleanProperty
and provides a full implementation of aStyleableProperty
.class
StyleableBooleanProperty
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.