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 voidBindings. bindBidirectional(Property<String> stringProperty, Property<?> otherProperty, Format format)Generates a bidirectional binding (or "bind with inverse") between aString-Propertyand anotherPropertyusing the specifiedFormatfor conversion.static <T> voidBindings. bindBidirectional(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter)Generates a bidirectional binding (or "bind with inverse") between aString-Propertyand anotherPropertyusing the specifiedStringConverterfor conversion.static <T> voidBindings. bindBidirectional(Property<T> property1, Property<T> property2)Generates a bidirectional binding (or "bind with inverse") between two instances ofProperty.static <T> voidBindings. 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 classBooleanPropertyThis class provides a full implementation of aPropertywrapping abooleanvalue.classBooleanPropertyBaseThe classBooleanPropertyBaseis the base class for a property wrapping abooleanvalue.classDoublePropertyThis class defines aPropertywrapping adoublevalue.classDoublePropertyBaseThe classDoublePropertyBaseis the base class for a property wrapping adoublevalue.classFloatPropertyThis class defines aPropertywrapping afloatvalue.classFloatPropertyBaseThe classFloatPropertyBaseis the base class for a property wrapping afloatvalue.classIntegerPropertyThis class defines aPropertywrapping anintvalue.classIntegerPropertyBaseThe classIntegerPropertyBaseis the base class for a property wrapping aintvalue.classListProperty<E>This class provides a full implementation of aPropertywrapping anObservableList.classListPropertyBase<E>The classListPropertyBaseis the base class for a property wrapping anObservableList.classLongPropertyThis class defines aPropertywrapping alongvalue.classLongPropertyBaseThe classLongPropertyBaseis the base class for a property wrapping alongvalue.classMapProperty<K,V>This class provides a full implementation of aPropertywrapping anObservableMap.classMapPropertyBase<K,V>The classMapPropertyBaseis the base class for a property wrapping anObservableMap.classObjectProperty<T>This class provides a full implementation of aPropertywrapping an arbitraryObject.classObjectPropertyBase<T>The classObjectPropertyBaseis the base class for a property wrapping an arbitraryObject.classReadOnlyBooleanWrapperThis class provides a convenient class to define read-only properties.classReadOnlyDoubleWrapperThis class provides a convenient class to define read-only properties.classReadOnlyFloatWrapperThis class provides a convenient class to define read-only properties.classReadOnlyIntegerWrapperThis class provides a convenient class to define read-only properties.classReadOnlyListWrapper<E>This class provides a convenient class to define read-only properties.classReadOnlyLongWrapperThis class provides a convenient class to define read-only properties.classReadOnlyMapWrapper<K,V>This class provides a convenient class to define read-only properties.classReadOnlyObjectWrapper<T>This class provides a convenient class to define read-only properties.classReadOnlySetWrapper<E>This class provides a convenient class to define read-only properties.classReadOnlyStringWrapperThis class provides a convenient class to define read-only properties.classSetProperty<E>This class provides a full implementation of aPropertywrapping anObservableSet.classSetPropertyBase<E>The classSetPropertyBaseis the base class for a property wrapping anObservableSet.classSimpleBooleanPropertyThis class provides a full implementation of aPropertywrapping abooleanvalue.classSimpleDoublePropertyThis class provides a full implementation of aPropertywrapping adoublevalue.classSimpleFloatPropertyThis class provides a full implementation of aPropertywrapping afloatvalue.classSimpleIntegerPropertyThis class provides a full implementation of aPropertywrapping aintvalue.classSimpleListProperty<E>This class provides a full implementation of aPropertywrapping anObservableList.classSimpleLongPropertyThis class provides a full implementation of aPropertywrapping alongvalue.classSimpleMapProperty<K,V>This class provides a full implementation of aPropertywrapping anObservableMap.classSimpleObjectProperty<T>This class provides a full implementation of aPropertywrapping an arbitraryObject.classSimpleSetProperty<E>This class provides a full implementation of aPropertywrapping anObservableSet.classSimpleStringPropertyThis class provides a full implementation of aPropertywrapping aStringvalue.classStringPropertyThis class provides a full implementation of aPropertywrapping aStringvalue.classStringPropertyBaseThe classStringPropertyBaseis the base class for a property wrapping aStringvalue.Methods in javafx.beans.property with parameters of type Property Modifier and Type Method Description voidProperty. bindBidirectional(Property<T> other)Create a bidirectional binding between thisPropertyand another one.voidStringProperty. bindBidirectional(Property<?> other, Format format)Create a bidirectional binding between thisStringPropertyand another arbitrary property.<T> voidStringProperty. bindBidirectional(Property<T> other, StringConverter<T> converter)Create a bidirectional binding between thisStringPropertyand another arbitrary property.static BooleanPropertyBooleanProperty. booleanProperty(Property<Boolean> property)Returns aBooleanPropertythat wraps aProperty.static DoublePropertyDoubleProperty. doubleProperty(Property<Double> property)Returns aDoublePropertythat wraps aPropertyand is bidirectionally bound to it.static FloatPropertyFloatProperty. floatProperty(Property<Float> property)Returns aFloatPropertythat wraps aPropertyand is bidirectionally bound to it.static IntegerPropertyIntegerProperty. integerProperty(Property<Integer> property)Returns aIntegerPropertythat wraps aPropertyand is bidirectionally bound to it.static LongPropertyLongProperty. longProperty(Property<Long> property)Returns aLongPropertythat wraps aPropertyand is bidirectionally bound to it.voidProperty. unbindBidirectional(Property<T> other)Remove a bidirectional binding between thisPropertyand another one. -
Uses of Property in javafx.beans.property.adapter
Subinterfaces of Property in javafx.beans.property.adapter Modifier and Type Interface Description interfaceJavaBeanProperty<T>JavaBeanPropertyis 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 classJavaBeanBooleanPropertyAJavaBeanBooleanPropertyprovides an adapter between a regular Java Bean property of typebooleanorBooleanand a JavaFXBooleanProperty.classJavaBeanDoublePropertyAJavaBeanDoublePropertyprovides an adapter between a regular Java Bean property of typedoubleorDoubleand a JavaFXDoubleProperty.classJavaBeanFloatPropertyAJavaBeanFloatPropertyprovides an adapter between a regular Java Bean property of typefloatorFloatand a JavaFXFloatProperty.classJavaBeanIntegerPropertyAJavaBeanIntegerPropertyprovides an adapter between a regular Java Bean property of typeintorIntegerand a JavaFXIntegerProperty.classJavaBeanLongPropertyAJavaBeanLongPropertyprovides an adapter between a regular Java Bean property of typelongorLongand a JavaFXLongProperty.classJavaBeanObjectProperty<T>AJavaBeanObjectPropertyprovides an adapter between a regular Java Bean property of typeTand a JavaFXObjectProperty<T>.classJavaBeanStringPropertyAJavaBeanStringPropertyprovides an adapter between a regular Java Bean property of typeStringand a JavaFXStringProperty. -
Uses of Property in javafx.css
Classes in javafx.css that implement Property Modifier and Type Class Description classSimpleStyleableBooleanPropertyThis class extendsSimpleBooleanPropertyand provides a full implementation of aStyleableProperty.classSimpleStyleableDoublePropertyThis class extendsSimpleDoublePropertyand provides a full implementation of aStyleableProperty.classSimpleStyleableFloatPropertyThis class extendsSimpleFloatPropertyand provides a full implementation of aStyleableProperty.classSimpleStyleableIntegerPropertyThis class extendsSimpleIntegerPropertyand provides a full implementation of aStyleableProperty.classSimpleStyleableLongPropertyThis class extendsSimpleLongPropertyand provides a full implementation of aStyleableProperty.classSimpleStyleableObjectProperty<T>This class extendsSimpleObjectPropertyand provides a full implementation of aStyleableProperty.classSimpleStyleableStringPropertyThis class extendsSimpleStringPropertyand provides a full implementation of aStyleableProperty.classStyleableBooleanPropertyThis class extendsBooleanPropertyBaseand provides a partial implementation of aStyleableProperty.classStyleableDoublePropertyThis class extendsDoublePropertyBaseand provides a partial implementation of aStyleableProperty.classStyleableFloatPropertyThis class extendsFloatPropertyBaseand provides a partial implementation of aStyleableProperty.classStyleableIntegerPropertyThis class extendsIntegerPropertyBaseand provides a partial implementation of aStyleableProperty.classStyleableLongPropertyThis class extendsLongPropertyBaseand provides a partial implementation of aStyleableProperty.classStyleableObjectProperty<T>This class extendsObjectPropertyBaseand provides a partial implementation of aStyleableProperty.classStyleableStringPropertyThis class extendsStringPropertyBaseand provides a partial implementation of aStyleableProperty.