Uses of Interface
javafx.beans.property.Property
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 Property in javafx.beans.binding
Methods in javafx.beans.binding with parameters of type Property Modifier and Type Method Description static 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
Classes in javafx.beans.property that implement 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
DoubleProperty
This class defines aProperty
wrapping adouble
value.class
DoublePropertyBase
The classDoublePropertyBase
is the base class for a property wrapping adouble
value.class
FloatProperty
This class defines aProperty
wrapping afloat
value.class
FloatPropertyBase
The classFloatPropertyBase
is the base class for a property wrapping afloat
value.class
IntegerProperty
This class defines aProperty
wrapping anint
value.class
IntegerPropertyBase
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
ListPropertyBase<E>
The classListPropertyBase
is the base class for a property wrapping anObservableList
.class
LongProperty
This class defines aProperty
wrapping along
value.class
LongPropertyBase
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
ObjectProperty<T>
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
ObjectPropertyBase<T>
The classObjectPropertyBase
is the base class for a property wrapping an arbitraryObject
.class
ReadOnlyBooleanWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyDoubleWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyFloatWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyIntegerWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyListWrapper<E>
This class provides a convenient class to define read-only properties.class
ReadOnlyLongWrapper
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
ReadOnlyObjectWrapper<T>
This class provides a convenient class to define read-only properties.class
ReadOnlySetWrapper<E>
This class provides a convenient class to define read-only properties.class
ReadOnlyStringWrapper
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
SetPropertyBase<E>
The classSetPropertyBase
is the base class for a property wrapping anObservableSet
.class
SimpleBooleanProperty
This class provides a full implementation of aProperty
wrapping aboolean
value.class
SimpleDoubleProperty
This class provides a full implementation of aProperty
wrapping adouble
value.class
SimpleFloatProperty
This class provides a full implementation of aProperty
wrapping afloat
value.class
SimpleIntegerProperty
This class provides a full implementation of aProperty
wrapping aint
value.class
SimpleListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.class
SimpleLongProperty
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
SimpleObjectProperty<T>
This class provides a full implementation of aProperty
wrapping an arbitraryObject
.class
SimpleSetProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableSet
.class
SimpleStringProperty
This class provides a full implementation of aProperty
wrapping aString
value.class
StringProperty
This class provides a full implementation of aProperty
wrapping aString
value.class
StringPropertyBase
The classStringPropertyBase
is the base class for a property wrapping aString
value.Methods in javafx.beans.property with parameters of type Property Modifier and Type Method Description void
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)
Remove a bidirectional binding between thisProperty
and another one.void
DoubleProperty. unbindBidirectional(Property<Number> other)
Remove a bidirectional binding between thisProperty
and another one.void
FloatProperty. unbindBidirectional(Property<Number> other)
Remove a bidirectional binding between thisProperty
and another one.void
IntegerProperty. unbindBidirectional(Property<Number> other)
Remove a bidirectional binding between thisProperty
and another one.void
ListProperty. unbindBidirectional(Property<ObservableList<E>> other)
Remove a bidirectional binding between thisProperty
and another one.void
LongProperty. unbindBidirectional(Property<Number> other)
Remove a bidirectional binding between thisProperty
and another one.void
MapProperty. unbindBidirectional(Property<ObservableMap<K,V>> other)
Remove a bidirectional binding between thisProperty
and another one.void
ObjectProperty. unbindBidirectional(Property<T> other)
Remove a bidirectional binding between thisProperty
and another one.void
Property. unbindBidirectional(Property<T> other)
Remove a bidirectional binding between thisProperty
and another one.void
SetProperty. unbindBidirectional(Property<ObservableSet<E>> other)
Remove a bidirectional binding between thisProperty
and another one.void
StringProperty. unbindBidirectional(Property<String> other)
Remove a bidirectional binding between thisProperty
and another one. -
Uses of Property in javafx.beans.property.adapter
Subinterfaces of Property in javafx.beans.property.adapter Modifier and Type Interface Description interface
JavaBeanProperty<T>
JavaBeanProperty
is the super interface of all adapters between writable Java Bean properties and JavaFX properties.Classes in javafx.beans.property.adapter that implement Property Modifier and Type Class Description class
JavaBeanBooleanProperty
AJavaBeanBooleanProperty
provides an adapter between a regular Java Bean property of typeboolean
orBoolean
and a JavaFXBooleanProperty
.class
JavaBeanDoubleProperty
AJavaBeanDoubleProperty
provides an adapter between a regular Java Bean property of typedouble
orDouble
and a JavaFXDoubleProperty
.class
JavaBeanFloatProperty
AJavaBeanFloatProperty
provides an adapter between a regular Java Bean property of typefloat
orFloat
and a JavaFXFloatProperty
.class
JavaBeanIntegerProperty
AJavaBeanIntegerProperty
provides an adapter between a regular Java Bean property of typeint
orInteger
and a JavaFXIntegerProperty
.class
JavaBeanLongProperty
AJavaBeanLongProperty
provides an adapter between a regular Java Bean property of typelong
orLong
and a JavaFXLongProperty
.class
JavaBeanObjectProperty<T>
AJavaBeanObjectProperty
provides an adapter between a regular Java Bean property of typeT
and a JavaFXObjectProperty<T>
.class
JavaBeanStringProperty
AJavaBeanStringProperty
provides an adapter between a regular Java Bean property of typeString
and a JavaFXStringProperty
. -
Uses of Property in javafx.css
Classes in javafx.css that implement Property Modifier and Type Class Description class
SimpleStyleableBooleanProperty
This class extendsSimpleBooleanProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableDoubleProperty
This class extendsSimpleDoubleProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableFloatProperty
This class extendsSimpleFloatProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableIntegerProperty
This class extendsSimpleIntegerProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableLongProperty
This class extendsSimpleLongProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableObjectProperty<T>
This class extendsSimpleObjectProperty
and provides a full implementation of aStyleableProperty
.class
SimpleStyleableStringProperty
This class extendsSimpleStringProperty
and provides a full implementation of aStyleableProperty
.class
StyleableBooleanProperty
This class extendsBooleanPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableDoubleProperty
This class extendsDoublePropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableFloatProperty
This class extendsFloatPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableIntegerProperty
This class extendsIntegerPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableLongProperty
This class extendsLongPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableObjectProperty<T>
This class extendsObjectPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableStringProperty
This class extendsStringPropertyBase
and provides a partial implementation of aStyleableProperty
.