Uses of Interface
javafx.beans.property.Property
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 Property in javafx.beans.binding
Modifier and TypeMethodDescriptionstatic void
Bindings.bindBidirectional
(Property<String> stringProperty, Property<?> otherProperty, Format format) Generates a bidirectional binding (or "bind with inverse") between aString
-Property
and anotherProperty
using the specifiedFormat
for conversion.static <T> void
Bindings.bindBidirectional
(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter) Generates a bidirectional binding (or "bind with inverse") between aString
-Property
and anotherProperty
using the specifiedStringConverter
for conversion.static <T> void
Bindings.bindBidirectional
(Property<T> property1, Property<T> property2) Generates a bidirectional binding (or "bind with inverse") between two instances ofProperty
.static <T> void
Bindings.unbindBidirectional
(Property<T> property1, Property<T> property2) Delete a bidirectional binding that was previously defined withBindings.bindBidirectional(Property, Property)
. -
Uses of Property 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
This class defines aProperty
wrapping adouble
value.class
The classDoublePropertyBase
is the base class for a property wrapping adouble
value.class
This class defines aProperty
wrapping afloat
value.class
The classFloatPropertyBase
is the base class for a property wrapping afloat
value.class
This class defines aProperty
wrapping anint
value.class
The classIntegerPropertyBase
is the base class for a property wrapping aint
value.class
ListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.class
The classListPropertyBase
is the base class for a property wrapping anObservableList
.class
This class defines aProperty
wrapping along
value.class
The classLongPropertyBase
is the base class for a property wrapping along
value.class
MapProperty<K,
V> This class provides a full implementation of aProperty
wrapping anObservableMap
.class
MapPropertyBase<K,
V> The classMapPropertyBase
is the base class for a property wrapping anObservableMap
.class
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
The classObjectPropertyBase
is the base class for a property wrapping an arbitraryObject
.class
This class provides a convenient class to define read-only properties.class
This class provides a convenient class to define read-only properties.class
This class provides a convenient class to define read-only properties.class
This class provides a convenient class to define read-only properties.class
This class provides a convenient class to define read-only properties.class
This class provides a convenient class to define read-only properties.class
ReadOnlyMapWrapper<K,
V> This class provides a convenient class to define read-only properties.class
This class provides a convenient class to define read-only properties.class
This class provides a convenient class to define read-only properties.class
This class provides a convenient class to define read-only properties.class
SetProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableSet
.class
The classSetPropertyBase
is the base class for a property wrapping anObservableSet
.class
This class provides a full implementation of aProperty
wrapping aboolean
value.class
This class provides a full implementation of aProperty
wrapping adouble
value.class
This class provides a full implementation of aProperty
wrapping afloat
value.class
This class provides a full implementation of aProperty
wrapping aint
value.class
This class provides a full implementation of aProperty
wrapping anObservableList
.class
This class provides a full implementation of aProperty
wrapping along
value.class
SimpleMapProperty<K,
V> This class provides a full implementation of aProperty
wrapping anObservableMap
.class
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
This class provides a full implementation of aProperty
wrapping anObservableSet
.class
This class provides a full implementation of aProperty
wrapping aString
value.class
This class provides a full implementation of aProperty
wrapping aString
value.class
The classStringPropertyBase
is the base class for a property wrapping aString
value.Modifier and TypeMethodDescriptionvoid
BooleanProperty.bindBidirectional
(Property<Boolean> other) Create a bidirectional binding between thisProperty
and another one.void
DoubleProperty.bindBidirectional
(Property<Number> other) Create a bidirectional binding between thisProperty
and another one.void
FloatProperty.bindBidirectional
(Property<Number> other) Create a bidirectional binding between thisProperty
and another one.void
IntegerProperty.bindBidirectional
(Property<Number> other) Create a bidirectional binding between thisProperty
and another one.void
ListProperty.bindBidirectional
(Property<ObservableList<E>> other) Create a bidirectional binding between thisProperty
and another one.void
LongProperty.bindBidirectional
(Property<Number> other) Create a bidirectional binding between thisProperty
and another one.void
MapProperty.bindBidirectional
(Property<ObservableMap<K, V>> other) Create a bidirectional binding between thisProperty
and another one.void
ObjectProperty.bindBidirectional
(Property<T> other) Create a bidirectional binding between thisProperty
and another one.void
Property.bindBidirectional
(Property<T> other) Create a bidirectional binding between thisProperty
and another one.void
SetProperty.bindBidirectional
(Property<ObservableSet<E>> other) Create a bidirectional binding between thisProperty
and another one.void
StringProperty.bindBidirectional
(Property<?> other, Format format) Create a bidirectional binding between thisStringProperty
and another arbitrary property.void
StringProperty.bindBidirectional
(Property<String> other) Create a bidirectional binding between thisProperty
and another one.<T> void
StringProperty.bindBidirectional
(Property<T> other, StringConverter<T> converter) Create a bidirectional binding between thisStringProperty
and another arbitrary property.static BooleanProperty
BooleanProperty.booleanProperty
(Property<Boolean> property) Returns aBooleanProperty
that wraps aProperty
.static DoubleProperty
DoubleProperty.doubleProperty
(Property<Double> property) Returns aDoubleProperty
that wraps aProperty
and is bidirectionally bound to it.static FloatProperty
FloatProperty.floatProperty
(Property<Float> property) Returns aFloatProperty
that wraps aProperty
and is bidirectionally bound to it.static IntegerProperty
IntegerProperty.integerProperty
(Property<Integer> property) Returns aIntegerProperty
that wraps aProperty
and is bidirectionally bound to it.static LongProperty
LongProperty.longProperty
(Property<Long> property) Returns aLongProperty
that wraps aProperty
and is bidirectionally bound to it.void
BooleanProperty.unbindBidirectional
(Property<Boolean> other) Removes a bidirectional binding between thisProperty
and another one.void
DoubleProperty.unbindBidirectional
(Property<Number> other) Removes a bidirectional binding between thisProperty
and another one.void
FloatProperty.unbindBidirectional
(Property<Number> other) Removes a bidirectional binding between thisProperty
and another one.void
IntegerProperty.unbindBidirectional
(Property<Number> other) Removes a bidirectional binding between thisProperty
and another one.void
ListProperty.unbindBidirectional
(Property<ObservableList<E>> other) Removes a bidirectional binding between thisProperty
and another one.void
LongProperty.unbindBidirectional
(Property<Number> other) Removes a bidirectional binding between thisProperty
and another one.void
MapProperty.unbindBidirectional
(Property<ObservableMap<K, V>> other) Removes a bidirectional binding between thisProperty
and another one.void
ObjectProperty.unbindBidirectional
(Property<T> other) Removes a bidirectional binding between thisProperty
and another one.void
Property.unbindBidirectional
(Property<T> other) Removes a bidirectional binding between thisProperty
and another one.void
SetProperty.unbindBidirectional
(Property<ObservableSet<E>> other) Removes a bidirectional binding between thisProperty
and another one.void
StringProperty.unbindBidirectional
(Property<String> other) Removes a bidirectional binding between thisProperty
and another one. -
Uses of Property in javafx.beans.property.adapter
Modifier and TypeInterfaceDescriptioninterface
JavaBeanProperty
is the super interface of all adapters between writable Java Bean properties and JavaFX properties.Modifier and TypeClassDescriptionfinal class
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
.final class
AJavaBeanDoubleProperty
provides an adapter between a regular Java Bean property of typedouble
orDouble
and a JavaFXDoubleProperty
.final class
AJavaBeanFloatProperty
provides an adapter between a regular Java Bean property of typefloat
orFloat
and a JavaFXFloatProperty
.final class
AJavaBeanIntegerProperty
provides an adapter between a regular Java Bean property of typeint
orInteger
and a JavaFXIntegerProperty
.final class
AJavaBeanLongProperty
provides an adapter between a regular Java Bean property of typelong
orLong
and a JavaFXLongProperty
.final class
AJavaBeanObjectProperty
provides an adapter between a regular Java Bean property of typeT
and a JavaFXObjectProperty<T>
.final class
AJavaBeanStringProperty
provides an adapter between a regular Java Bean property of typeString
and a JavaFXStringProperty
. -
Uses of Property in javafx.css
Modifier and TypeClassDescriptionclass
This class extendsSimpleBooleanProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleDoubleProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleFloatProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleIntegerProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleLongProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleObjectProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsSimpleStringProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsDoublePropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsFloatPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsLongPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsObjectPropertyBase
and provides a partial implementation of aStyleableProperty
.class
This class extendsStringPropertyBase
and provides a partial implementation of aStyleableProperty
.