Uses of Interface
javafx.beans.property.ReadOnlyProperty
Package
Description
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 ReadOnlyProperty in javafx.beans.property
Modifier and TypeInterfaceDescriptioninterface
Property<T>
Generic interface that defines the methods common to all (writable) properties, independent of their type.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
Superclass for all readonly properties wrapping aboolean
.class
Base class for all readonly properties wrapping aboolean
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping adouble
.class
Base class for all readonly properties wrapping adouble
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping afloat
.class
Base class for all readonly properties wrapping afloat
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anint
.class
Base class for all readonly properties wrapping anint
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anObservableList
.class
Base class for all readonly properties wrapping anObservableList
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping along
.class
Base class for all readonly properties wrapping along
.class
This class provides a convenient class to define read-only properties.class
ReadOnlyMapProperty<K,
V> Superclass for all readonly properties wrapping anObservableMap
.class
Base class for all readonly properties wrapping anObservableMap
.class
ReadOnlyMapWrapper<K,
V> This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping an arbitraryObject
.class
Base class for all readonly properties wrapping an arbitraryObject
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anObservableSet
.class
Base class for all readonly properties wrapping anObservableSet
.class
This class provides a convenient class to define read-only properties.class
Superclass for all readonly properties wrapping anString
.class
Base class for all readonly properties wrapping aString
.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 TypeMethodDescriptionstatic ReadOnlyBooleanProperty
ReadOnlyBooleanProperty.readOnlyBooleanProperty
(ReadOnlyProperty<Boolean> property) Returns aReadOnlyBooleanProperty
that wraps aReadOnlyProperty
.static <T extends Number>
ReadOnlyDoublePropertyReadOnlyDoubleProperty.readOnlyDoubleProperty
(ReadOnlyProperty<T> property) Returns aReadOnlyDoubleProperty
that wraps aReadOnlyProperty
.static <T extends Number>
ReadOnlyFloatPropertyReadOnlyFloatProperty.readOnlyFloatProperty
(ReadOnlyProperty<T> property) Returns aReadOnlyFloatProperty
that wraps aReadOnlyProperty
.static <T extends Number>
ReadOnlyIntegerPropertyReadOnlyIntegerProperty.readOnlyIntegerProperty
(ReadOnlyProperty<T> property) Returns aReadOnlyIntegerProperty
that wraps aReadOnlyProperty
.static <T extends Number>
ReadOnlyLongPropertyReadOnlyLongProperty.readOnlyLongProperty
(ReadOnlyProperty<T> property) Returns aReadOnlyLongProperty
that wraps aReadOnlyProperty
. -
Uses of ReadOnlyProperty in javafx.beans.property.adapter
Modifier and TypeInterfaceDescriptioninterface
JavaBeanProperty
is the super interface of all adapters between writable Java Bean properties and JavaFX properties.interface
JavaBeanProperty
is the super interface of all adapters between readonly 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
.final class
AReadOnlyJavaBeanBooleanProperty
provides an adapter between a regular read only Java Bean property of typeboolean
orBoolean
and a JavaFXReadOnlyBooleanProperty
.final class
AReadOnlyJavaBeanDoubleProperty
provides an adapter between a regular read only Java Bean property of typedouble
orDouble
and a JavaFXReadOnlyDoubleProperty
.final class
AReadOnlyJavaBeanFloatProperty
provides an adapter between a regular read only Java Bean property of typefloat
orFloat
and a JavaFXReadOnlyFloatProperty
.final class
AReadOnlyJavaBeanIntegerProperty
provides an adapter between a regular read only Java Bean property of typeint
orInteger
and a JavaFXReadOnlyIntegerProperty
.final class
AReadOnlyJavaBeanLongProperty
provides an adapter between a regular read only Java Bean property of typelong
orLong
and a JavaFXReadOnlyLongProperty
.final class
AReadOnlyJavaBeanObjectProperty
provides an adapter between a regular read only Java Bean property ofT
and a JavaFXReadOnlyObjectProperty
.final class
AReadOnlyJavaBeanStringProperty
provides an adapter between a regular read only Java Bean property of typeString
and a JavaFXReadOnlyStringProperty
. -
Uses of ReadOnlyProperty 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
.