Uses of Class
javafx.beans.binding.BooleanExpression
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 BooleanExpression in javafx.beans.binding
Subclasses of BooleanExpression in javafx.beans.binding Modifier and Type Class Description class
BooleanBinding
Base class that provides most of the functionality needed to implement aBinding
of aboolean
value.Methods in javafx.beans.binding that return BooleanExpression Modifier and Type Method Description static BooleanExpression
BooleanExpression. booleanExpression(ObservableBooleanValue value)
Returns aBooleanExpression
that wraps aObservableBooleanValue
.static BooleanExpression
BooleanExpression. booleanExpression(ObservableValue<Boolean> value)
Returns aBooleanExpression
that wraps anObservableValue
. -
Uses of BooleanExpression in javafx.beans.property
Subclasses of BooleanExpression in javafx.beans.property 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 BooleanExpression in javafx.beans.property.adapter
Subclasses of BooleanExpression in javafx.beans.property.adapter 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 BooleanExpression in javafx.css
Subclasses of BooleanExpression in javafx.css 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
.