Uses of Interface
javafx.beans.property.ReadOnlyProperty
-
Packages that use ReadOnlyProperty Package Description javafx.beans.property The packagejavafx.beans.propertydefines 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 correspondingJavaFX 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 interfaceProperty<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 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.classReadOnlyBooleanPropertySuperclass for all readonly properties wrapping aboolean.classReadOnlyBooleanPropertyBaseBase class for all readonly properties wrapping aboolean.classReadOnlyBooleanWrapperThis class provides a convenient class to define read-only properties.classReadOnlyDoublePropertySuperclass for all readonly properties wrapping adouble.classReadOnlyDoublePropertyBaseBase class for all readonly properties wrapping adouble.classReadOnlyDoubleWrapperThis class provides a convenient class to define read-only properties.classReadOnlyFloatPropertySuperclass for all readonly properties wrapping afloat.classReadOnlyFloatPropertyBaseBase class for all readonly properties wrapping afloat.classReadOnlyFloatWrapperThis class provides a convenient class to define read-only properties.classReadOnlyIntegerPropertySuperclass for all readonly properties wrapping anint.classReadOnlyIntegerPropertyBaseBase class for all readonly properties wrapping anint.classReadOnlyIntegerWrapperThis class provides a convenient class to define read-only properties.classReadOnlyListProperty<E>Superclass for all readonly properties wrapping anObservableList.classReadOnlyListPropertyBase<E>Base class for all readonly properties wrapping anObservableList.classReadOnlyListWrapper<E>This class provides a convenient class to define read-only properties.classReadOnlyLongPropertySuperclass for all readonly properties wrapping along.classReadOnlyLongPropertyBaseBase class for all readonly properties wrapping along.classReadOnlyLongWrapperThis class provides a convenient class to define read-only properties.classReadOnlyMapProperty<K,V>Superclass for all readonly properties wrapping anObservableMap.classReadOnlyMapPropertyBase<K,V>Base class for all readonly properties wrapping anObservableMap.classReadOnlyMapWrapper<K,V>This class provides a convenient class to define read-only properties.classReadOnlyObjectProperty<T>Superclass for all readonly properties wrapping an arbitraryObject.classReadOnlyObjectPropertyBase<T>Base class for all readonly properties wrapping an arbitraryObject.classReadOnlyObjectWrapper<T>This class provides a convenient class to define read-only properties.classReadOnlySetProperty<E>Superclass for all readonly properties wrapping anObservableSet.classReadOnlySetPropertyBase<E>Base class for all readonly properties wrapping anObservableSet.classReadOnlySetWrapper<E>This class provides a convenient class to define read-only properties.classReadOnlyStringPropertySuperclass for all readonly properties wrapping anString.classReadOnlyStringPropertyBaseBase class for all readonly properties wrapping aString.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 ReadOnlyProperty Modifier and Type Method Description static ReadOnlyBooleanPropertyReadOnlyBooleanProperty. readOnlyBooleanProperty(ReadOnlyProperty<Boolean> property)Returns aReadOnlyBooleanPropertythat wraps aReadOnlyProperty.static <T extends Number>
ReadOnlyDoublePropertyReadOnlyDoubleProperty. readOnlyDoubleProperty(ReadOnlyProperty<T> property)Returns aReadOnlyDoublePropertythat wraps aReadOnlyProperty.static <T extends Number>
ReadOnlyFloatPropertyReadOnlyFloatProperty. readOnlyFloatProperty(ReadOnlyProperty<T> property)Returns aReadOnlyFloatPropertythat wraps aReadOnlyProperty.static <T extends Number>
ReadOnlyIntegerPropertyReadOnlyIntegerProperty. readOnlyIntegerProperty(ReadOnlyProperty<T> property)Returns aReadOnlyIntegerPropertythat wraps aReadOnlyProperty.static <T extends Number>
ReadOnlyLongPropertyReadOnlyLongProperty. readOnlyLongProperty(ReadOnlyProperty<T> property)Returns aReadOnlyLongPropertythat wraps aReadOnlyProperty. -
Uses of ReadOnlyProperty in javafx.beans.property.adapter
Subinterfaces of ReadOnlyProperty 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.interfaceReadOnlyJavaBeanProperty<T>JavaBeanPropertyis 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 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.classReadOnlyJavaBeanBooleanPropertyAReadOnlyJavaBeanBooleanPropertyprovides an adapter between a regular read only Java Bean property of typebooleanorBooleanand a JavaFXReadOnlyBooleanProperty.classReadOnlyJavaBeanDoublePropertyAReadOnlyJavaBeanDoublePropertyprovides an adapter between a regular read only Java Bean property of typedoubleorDoubleand a JavaFXReadOnlyDoubleProperty.classReadOnlyJavaBeanFloatPropertyAReadOnlyJavaBeanFloatPropertyprovides an adapter between a regular read only Java Bean property of typefloatorFloatand a JavaFXReadOnlyFloatProperty.classReadOnlyJavaBeanIntegerPropertyAReadOnlyJavaBeanIntegerPropertyprovides an adapter between a regular read only Java Bean property of typeintorIntegerand a JavaFXReadOnlyIntegerProperty.classReadOnlyJavaBeanLongPropertyAReadOnlyJavaBeanLongPropertyprovides an adapter between a regular read only Java Bean property of typelongorLongand a JavaFXReadOnlyLongProperty.classReadOnlyJavaBeanObjectProperty<T>AReadOnlyJavaBeanObjectPropertyprovides an adapter between a regular read only Java Bean property ofTand a JavaFXReadOnlyObjectProperty.classReadOnlyJavaBeanStringPropertyAReadOnlyJavaBeanStringPropertyprovides an adapter between a regular read only Java Bean property of typeStringand a JavaFXReadOnlyStringProperty. -
Uses of ReadOnlyProperty in javafx.css
Classes in javafx.css that implement ReadOnlyProperty 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.
-