Uses of Interface
javafx.beans.value.WritableValue
Package | Description |
---|---|
javafx.animation |
Provides the set of classes for ease of use transition based animations.
|
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.beans.value |
The package
javafx.beans.value contains the two
fundamental interfaces ObservableValue and WritableValue and all of its sub-interfaces. |
javafx.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
-
Uses of WritableValue in javafx.animation
Methods in javafx.animation that return WritableValue Modifier and Type Method Description WritableValue<?>
KeyValue. getTarget()
Returns the target of thisKeyValue
Constructors in javafx.animation with parameters of type WritableValue Constructor Description KeyValue(WritableValue<T> target, T endValue)
Creates aKeyValue
that usesInterpolator.LINEAR
.KeyValue(WritableValue<T> target, T endValue, Interpolator interpolator)
Creates aKeyValue
. -
Uses of WritableValue in javafx.beans.property
Subinterfaces of WritableValue in javafx.beans.property Modifier and Type Interface Description interface
Property<T>
Generic interface that defines the methods common to all (writable) properties independent of their type.Classes in javafx.beans.property that implement WritableValue 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. -
Uses of WritableValue in javafx.beans.property.adapter
Subinterfaces of WritableValue 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 WritableValue 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 WritableValue in javafx.beans.value
Subinterfaces of WritableValue in javafx.beans.value Modifier and Type Interface Description interface
WritableBooleanValue
A writable boolean value.interface
WritableDoubleValue
A writable double value.interface
WritableFloatValue
A writable float value.interface
WritableIntegerValue
A writable int value.interface
WritableListValue<E>
A writable reference to anObservableList
.interface
WritableLongValue
A writable long value.interface
WritableMapValue<K,V>
A writable reference to anObservableMap
.interface
WritableNumberValue
A tagging interface that marks all sub-interfaces ofWritableValue
that wrap a number.interface
WritableObjectValue<T>
A writable typed value.interface
WritableSetValue<E>
A writable reference to anObservableSet
.interface
WritableStringValue
A writable String. -
Uses of WritableValue in javafx.css
Subinterfaces of WritableValue in javafx.css Modifier and Type Interface Description interface
StyleableProperty<T>
StyleableProperty allows ajavafx.beans.property
to be styled from CSS.Classes in javafx.css that implement WritableValue 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
.