Uses of Interface
javafx.beans.property.Property
-
Packages that use Property 软件包 描述 javafx.beans.binding 提供在Binding
上创建和操作的类,用于计算取决于一个或多个来源的值。javafx.beans.property 程序包javafx.beans.property
定义只读属性和可写属性,加上一些实现。javafx.beans.property.adapter 提供各种类,作为常规Java Bean属性和对应的JavaFX Property
之间的适配器。javafx.css 提供API,通过CSS使属性变得风格,并支持伪类状态。 -
-
Uses of Property in javafx.beans.binding
Methods in javafx.beans.binding with parameters of type Property Modifier and Type 方法 描述 static void
Bindings. bindBidirectional(Property<String> stringProperty, Property<?> otherProperty, Format format)
在String
-Property
和另一个Property
使用指定的Format
生成双向绑定(或“反向绑定”)进行转换。static <T> void
Bindings. bindBidirectional(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter)
在String
-Property
和另一个Property
使用指定的StringConverter
生成双向绑定(或“反向绑定”)进行转换。static <T> void
Bindings. bindBidirectional(Property<T> property1, Property<T> property2)
在Property
的两个实例之间生成双向绑定(或“绑定反向”)。static <T> void
Bindings. unbindBidirectional(Property<T> property1, Property<T> property2)
删除先前使用Bindings.bindBidirectional(Property, Property)
定义的双向绑定。 -
Uses of Property in javafx.beans.property
Classes in javafx.beans.property that implement Property Modifier and Type Class 描述 class
BooleanProperty
class
BooleanPropertyBase
BooleanPropertyBase
类是包含boolean
值的属性的基类。class
DoubleProperty
这个类定义了一个Property
包装double
值。class
DoublePropertyBase
DoublePropertyBase
类是包含double
值的属性的基类。class
FloatProperty
这个类定义了一个Property
包装float
值。class
FloatPropertyBase
FloatPropertyBase
类是包含float
值的属性的基类。class
IntegerProperty
这个类定义了一个Property
包装int
值。class
IntegerPropertyBase
IntegerPropertyBase
类是包含int
值的属性的基类。class
ListProperty<E>
这个类提供了一个Property
包装一个ObservableList
的完整实现。class
ListPropertyBase<E>
ListPropertyBase
类是包装ObservableList
的属性的基类。class
LongProperty
这个类定义了一个Property
包装long
值。class
LongPropertyBase
LongPropertyBase
类是包含long
值的属性的基类。class
MapProperty<K,V>
这个类提供了一个Property
包装一个ObservableMap
的完整实现。class
MapPropertyBase<K,V>
MapPropertyBase
类是包装ObservableMap
的属性的基类。class
ObjectProperty<T>
这个类提供了一个Property
的全面实现,包含任意的Object
。class
ObjectPropertyBase<T>
ObjectPropertyBase
类是包含任意Object
的属性的基类。class
ReadOnlyBooleanWrapper
该类提供了一个方便的类来定义只读属性。class
ReadOnlyDoubleWrapper
该类提供了一个方便的类来定义只读属性。class
ReadOnlyFloatWrapper
该类提供了一个方便的类来定义只读属性。class
ReadOnlyIntegerWrapper
该类提供了一个方便的类来定义只读属性。class
ReadOnlyListWrapper<E>
该类提供了一个方便的类来定义只读属性。class
ReadOnlyLongWrapper
该类提供了一个方便的类来定义只读属性。class
ReadOnlyMapWrapper<K,V>
该类提供了一个方便的类来定义只读属性。class
ReadOnlyObjectWrapper<T>
该类提供了一个方便的类来定义只读属性。class
ReadOnlySetWrapper<E>
该类提供了一个方便的类来定义只读属性。class
ReadOnlyStringWrapper
该类提供了一个方便的类来定义只读属性。class
SetProperty<E>
这个类提供了一个Property
包装一个ObservableSet
的完整实现。class
SetPropertyBase<E>
SetPropertyBase
类是包装ObservableSet
的属性的基类。class
SimpleBooleanProperty
class
SimpleDoubleProperty
class
SimpleFloatProperty
class
SimpleIntegerProperty
class
SimpleListProperty<E>
这个类提供了一个Property
包装一个ObservableList
的完整实现。class
SimpleLongProperty
class
SimpleMapProperty<K,V>
这个类提供了一个Property
包装一个ObservableMap
的完整实现。class
SimpleObjectProperty<T>
class
SimpleSetProperty<E>
这个类提供了一个Property
包装一个ObservableSet
的全面实现。class
SimpleStringProperty
class
StringProperty
class
StringPropertyBase
StringPropertyBase
类是包含String
值的属性的基类。Methods in javafx.beans.property with parameters of type Property Modifier and Type 方法 描述 void
BooleanProperty. bindBidirectional(Property<Boolean> other)
在这个Property
和另一个之间创建双向绑定。void
DoubleProperty. bindBidirectional(Property<Number> other)
在这个Property
和另一个之间创建双向绑定。void
FloatProperty. bindBidirectional(Property<Number> other)
在这个Property
和另一个之间创建双向绑定。void
IntegerProperty. bindBidirectional(Property<Number> other)
在这个Property
之间创建一个双向绑定。void
ListProperty. bindBidirectional(Property<ObservableList<E>> other)
在这个Property
和另一个之间创建双向绑定。void
LongProperty. bindBidirectional(Property<Number> other)
在这个Property
和另一个之间创建双向绑定。void
MapProperty. bindBidirectional(Property<ObservableMap<K,V>> other)
在这个Property
和另一个之间创建双向绑定。void
ObjectProperty. bindBidirectional(Property<T> other)
在这个Property
和另一个之间创建双向绑定。void
Property. bindBidirectional(Property<T> other)
在这个Property
和另一个之间创建双向绑定。void
SetProperty. bindBidirectional(Property<ObservableSet<E>> other)
在这个Property
和另一个之间创建双向绑定。void
StringProperty. bindBidirectional(Property<?> other, Format format)
在这个StringProperty
和另一个任意属性之间创建双向绑定。void
StringProperty. bindBidirectional(Property<String> other)
在这个Property
和另一个之间创建双向绑定。<T> void
StringProperty. bindBidirectional(Property<T> other, StringConverter<T> converter)
在这个StringProperty
和另一个任意属性之间创建双向绑定。static BooleanProperty
BooleanProperty. booleanProperty(Property<Boolean> property)
返回一个BooleanProperty
,其中包含一个Property
。static DoubleProperty
DoubleProperty. doubleProperty(Property<Double> property)
返回一个DoubleProperty
,它包装一个Property
,并且双向绑定到它。static FloatProperty
FloatProperty. floatProperty(Property<Float> property)
返回一个FloatProperty
,它包裹一个Property
并双向绑定到它。static IntegerProperty
IntegerProperty. integerProperty(Property<Integer> property)
返回一个IntegerProperty
,其中包含一个Property
并双向绑定到它。static LongProperty
LongProperty. longProperty(Property<Long> property)
返回一个LongProperty
,它包装一个Property
并双向绑定到它。void
BooleanProperty. unbindBidirectional(Property<Boolean> other)
删除这个Property
和另一个之间的双向绑定。void
DoubleProperty. unbindBidirectional(Property<Number> other)
删除此Property
和另一个之间的双向绑定。void
FloatProperty. unbindBidirectional(Property<Number> other)
删除这个Property
和另一个之间的双向绑定。void
IntegerProperty. unbindBidirectional(Property<Number> other)
删除此Property
和另一个之间的双向绑定。void
ListProperty. unbindBidirectional(Property<ObservableList<E>> other)
删除这个Property
和另一个之间的双向绑定。void
LongProperty. unbindBidirectional(Property<Number> other)
删除此Property
和另一个之间的双向绑定。void
MapProperty. unbindBidirectional(Property<ObservableMap<K,V>> other)
删除这个Property
和另一个之间的双向绑定。void
ObjectProperty. unbindBidirectional(Property<T> other)
删除这个Property
和另一个之间的双向绑定。void
Property. unbindBidirectional(Property<T> other)
删除此Property
和另一个之间的双向绑定。void
SetProperty. unbindBidirectional(Property<ObservableSet<E>> other)
删除这个Property
和另一个之间的双向绑定。void
StringProperty. unbindBidirectional(Property<String> other)
删除此Property
和另一个之间的双向绑定。 -
Uses of Property in javafx.beans.property.adapter
Subinterfaces of Property in javafx.beans.property.adapter Modifier and Type 接口 描述 interface
JavaBeanProperty<T>
JavaBeanProperty
是可写Java Bean属性和JavaFX属性之间的所有适配器的超级接口。Classes in javafx.beans.property.adapter that implement Property Modifier and Type Class 描述 class
JavaBeanBooleanProperty
AJavaBeanBooleanProperty
在boolean
或Boolean
之间的常规Java Bean属性和JavaFXBooleanProperty
之间提供了一个适配器。class
JavaBeanDoubleProperty
AJavaBeanDoubleProperty
在double
或Double
之间的常规Java Bean属性和JavaFXDoubleProperty
之间提供了一个适配器。class
JavaBeanFloatProperty
AJavaBeanFloatProperty
在float
或Float
之间的常规Java Bean属性和JavaFXFloatProperty
之间提供了一个适配器。class
JavaBeanIntegerProperty
AJavaBeanIntegerProperty
在int
或Integer
之间的常规Java Bean属性和JavaFXIntegerProperty
之间提供了一个适配器。class
JavaBeanLongProperty
AJavaBeanLongProperty
在long
或Long
之间的常规Java Bean属性和JavaFXLongProperty
之间提供了一个适配器。class
JavaBeanObjectProperty<T>
AJavaBeanObjectProperty
在类型为T
的常规Java Bean属性和JavaFXObjectProperty<T>
之间提供了一个适配器。class
JavaBeanStringProperty
AJavaBeanStringProperty
在类型为String
的常规Java Bean属性和JavaFXStringProperty
之间提供了一个适配器。 -
Uses of Property in javafx.css
Classes in javafx.css that implement Property Modifier and Type Class 描述 class
SimpleStyleableBooleanProperty
这个类扩展了SimpleBooleanProperty
并提供了一个StyleableProperty
的完整实现。class
SimpleStyleableDoubleProperty
该课程扩展了SimpleDoubleProperty
并提供了一个StyleableProperty
的完整实现。class
SimpleStyleableFloatProperty
该课程扩展了SimpleFloatProperty
并提供了一个StyleableProperty
的完整实现。class
SimpleStyleableIntegerProperty
该课程扩展了SimpleIntegerProperty
并提供了一个StyleableProperty
的全面实现。class
SimpleStyleableLongProperty
这个类扩展了SimpleLongProperty
并提供了一个StyleableProperty
的完整实现。class
SimpleStyleableObjectProperty<T>
这个类扩展了SimpleObjectProperty
并提供了一个StyleableProperty
的完整实现。class
SimpleStyleableStringProperty
该课程扩展了SimpleStringProperty
并提供了一个StyleableProperty
的全面实现。class
StyleableBooleanProperty
这个类扩展了BooleanPropertyBase
并提供了一个StyleableProperty
的部分实现。class
StyleableDoubleProperty
这个类扩展了DoublePropertyBase
并提供了一个StyleableProperty
的部分实现。class
StyleableFloatProperty
这个类扩展了FloatPropertyBase
并提供了一个StyleableProperty
的部分实现。class
StyleableIntegerProperty
这个类扩展了IntegerPropertyBase
并提供了一个StyleableProperty
的部分实现。class
StyleableLongProperty
这个类扩展了LongPropertyBase
并提供了一个StyleableProperty
的部分实现。class
StyleableObjectProperty<T>
这个类扩展了ObjectPropertyBase
并提供了一个StyleableProperty
的部分实现。class
StyleableStringProperty
这个类扩展了StringPropertyBase
并提供了一个StyleableProperty
的部分实现。
-