Uses of Interface
javafx.beans.property.ReadOnlyProperty
Package | Description |
---|---|
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 ReadOnlyProperty in javafx.beans.property
Subinterfaces of ReadOnlyProperty 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 ReadOnlyProperty 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
ReadOnlyBooleanProperty
Superclass for all readonly properties wrapping aboolean
.class
ReadOnlyBooleanPropertyBase
Base class for all readonly properties wrapping aboolean
.class
ReadOnlyBooleanWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyDoubleProperty
Superclass for all readonly properties wrapping adouble
.class
ReadOnlyDoublePropertyBase
Base class for all readonly properties wrapping adouble
.class
ReadOnlyDoubleWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyFloatProperty
Superclass for all readonly properties wrapping afloat
.class
ReadOnlyFloatPropertyBase
Base class for all readonly properties wrapping afloat
.class
ReadOnlyFloatWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyIntegerProperty
Superclass for all readonly properties wrapping anint
.class
ReadOnlyIntegerPropertyBase
Base class for all readonly properties wrapping anint
.class
ReadOnlyIntegerWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyListProperty<E>
Superclass for all readonly properties wrapping anObservableList
.class
ReadOnlyListPropertyBase<E>
Base class for all readonly properties wrapping anObservableList
.class
ReadOnlyListWrapper<E>
This class provides a convenient class to define read-only properties.class
ReadOnlyLongProperty
Superclass for all readonly properties wrapping along
.class
ReadOnlyLongPropertyBase
Base class for all readonly properties wrapping along
.class
ReadOnlyLongWrapper
This class provides a convenient class to define read-only properties.class
ReadOnlyMapProperty<K,V>
Superclass for all readonly properties wrapping anObservableMap
.class
ReadOnlyMapPropertyBase<K,V>
Base class for all readonly properties wrapping anObservableMap
.class
ReadOnlyMapWrapper<K,V>
This class provides a convenient class to define read-only properties.class
ReadOnlyObjectProperty<T>
Superclass for all readonly properties wrapping an arbitraryObject
.class
ReadOnlyObjectPropertyBase<T>
Base class for all readonly properties wrapping an arbitraryObject
.class
ReadOnlyObjectWrapper<T>
This class provides a convenient class to define read-only properties.class
ReadOnlySetProperty<E>
Superclass for all readonly properties wrapping anObservableSet
.class
ReadOnlySetPropertyBase<E>
Base class for all readonly properties wrapping anObservableSet
.class
ReadOnlySetWrapper<E>
This class provides a convenient class to define read-only properties.class
ReadOnlyStringProperty
Superclass for all readonly properties wrapping anString
.class
ReadOnlyStringPropertyBase
Base class for all readonly properties wrapping aString
.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 ReadOnlyProperty Modifier and Type Method Description static 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
Subinterfaces of ReadOnlyProperty 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.interface
ReadOnlyJavaBeanProperty<T>
JavaBeanProperty
is the super interface of all adapters between readonly Java Bean properties and JavaFX properties.Classes in javafx.beans.property.adapter that implement ReadOnlyProperty 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
.class
ReadOnlyJavaBeanBooleanProperty
AReadOnlyJavaBeanBooleanProperty
provides an adapter between a regular read only Java Bean property of typeboolean
orBoolean
and a JavaFXReadOnlyBooleanProperty
.class
ReadOnlyJavaBeanDoubleProperty
AReadOnlyJavaBeanDoubleProperty
provides an adapter between a regular read only Java Bean property of typedouble
orDouble
and a JavaFXReadOnlyDoubleProperty
.class
ReadOnlyJavaBeanFloatProperty
AReadOnlyJavaBeanFloatProperty
provides an adapter between a regular read only Java Bean property of typefloat
orFloat
and a JavaFXReadOnlyFloatProperty
.class
ReadOnlyJavaBeanIntegerProperty
AReadOnlyJavaBeanIntegerProperty
provides an adapter between a regular read only Java Bean property of typeint
orInteger
and a JavaFXReadOnlyIntegerProperty
.class
ReadOnlyJavaBeanLongProperty
AReadOnlyJavaBeanLongProperty
provides an adapter between a regular read only Java Bean property of typelong
orLong
and a JavaFXReadOnlyLongProperty
.class
ReadOnlyJavaBeanObjectProperty<T>
AReadOnlyJavaBeanObjectProperty
provides an adapter between a regular read only Java Bean property ofT
and a JavaFXReadOnlyObjectProperty
.class
ReadOnlyJavaBeanStringProperty
AReadOnlyJavaBeanStringProperty
provides an adapter between a regular read only Java Bean property of typeString
and a JavaFXReadOnlyStringProperty
. -
Uses of ReadOnlyProperty in javafx.css
Classes in javafx.css that implement ReadOnlyProperty 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
.