Uses of Interface
javafx.beans.value.ObservableValue
Packages that use ObservableValue
Package
Description
-
Uses of ObservableValue in com.sun.javafx.binding
Classes in com.sun.javafx.binding that implement ObservableValueModifier and TypeClassDescriptionfinal classA simple IntegerExpression that represents a single constant value.classclassFields in com.sun.javafx.binding declared as ObservableValueMethods in com.sun.javafx.binding with parameters of type ObservableValueModifier and TypeMethodDescriptionstatic <T> ExpressionHelper<T>ExpressionHelper.addListener(ExpressionHelper<T> helper, ObservableValue<T> observable, InvalidationListener listener) static <T> ExpressionHelper<T>ExpressionHelper.addListener(ExpressionHelper<T> helper, ObservableValue<T> observable, ChangeListener<? super T> listener) voidBidirectionalBinding.StringConversionBidirectionalBinding.changed(ObservableValue<? extends Object> observable, Object oldValue, Object newValue) static StringExpressionStringFormatter.convert(ObservableValue<?> observableValue) -
Uses of ObservableValue in com.sun.javafx.scene.control
Methods in com.sun.javafx.scene.control that return types with arguments of type ObservableValueModifier and TypeMethodDescriptionfinal Consumer<ObservableValue<?>>LambdaMultiplePropertyChangeListenerHandler.unregisterChangeListeners(ObservableValue<?> property) Methods in com.sun.javafx.scene.control with parameters of type ObservableValueModifier and TypeMethodDescriptionfinal voidLambdaMultiplePropertyChangeListenerHandler.registerChangeListener(ObservableValue<?> property, Consumer<ObservableValue<?>> consumer) Subclasses can invoke this method to register that we want to listen to property change events for the given property.final voidMultiplePropertyChangeListenerHandler.registerChangeListener(ObservableValue<?> property, String reference) Subclasses can invoke this method to register that we want to listen to property change events for the given property.final voidMultiplePropertyChangeListenerHandler.unregisterChangeListener(ObservableValue<?> property) final Consumer<ObservableValue<?>>LambdaMultiplePropertyChangeListenerHandler.unregisterChangeListeners(ObservableValue<?> property) Method parameters in com.sun.javafx.scene.control with type arguments of type ObservableValueModifier and TypeMethodDescriptionfinal voidLambdaMultiplePropertyChangeListenerHandler.registerChangeListener(ObservableValue<?> property, Consumer<ObservableValue<?>> consumer) Subclasses can invoke this method to register that we want to listen to property change events for the given property. -
Uses of ObservableValue in com.sun.javafx.scene.control.skin
Methods in com.sun.javafx.scene.control.skin with parameters of type ObservableValueModifier and TypeMethodDescriptionprotected final voidBehaviorSkinBase.registerChangeListener(ObservableValue<?> property, String reference) Subclasses can invoke this method to register that we want to listen to property change events for the given property. -
Uses of ObservableValue in dev.webfx.kit.mapper.peers.javafxcontrols.base
Methods in dev.webfx.kit.mapper.peers.javafxcontrols.base with parameters of type ObservableValueModifier and TypeMethodDescriptionbooleanCheckBoxPeerBase.updateProperty(ObservableValue changedProperty) booleanLabeledPeerBase.updateProperty(ObservableValue changedProperty) booleanProgressIndicatorPeerBase.updateProperty(ObservableValue changedProperty) booleanScrollPanePeerBase.updateProperty(ObservableValue changedProperty) booleanSliderPeerBase.updateProperty(ObservableValue changedProperty) booleanTextAreaPeerBase.updateProperty(ObservableValue changedProperty) booleanTextFieldPeerBase.updateProperty(ObservableValue changedProperty) booleanTextInputControlPeerBase.updateProperty(ObservableValue changedProperty) booleanToggleButtonPeerBase.updateProperty(ObservableValue changedProperty) -
Uses of ObservableValue in dev.webfx.kit.mapper.peers.javafxgraphics
Methods in dev.webfx.kit.mapper.peers.javafxgraphics with parameters of type ObservableValueModifier and TypeMethodDescriptionvoidSceneRequester.requestNodePeerPropertyUpdate(Node node, ObservableValue changedProperty) booleanNodePeer.updateProperty(ObservableValue changedProperty) -
Uses of ObservableValue in dev.webfx.kit.mapper.peers.javafxgraphics.base
Methods in dev.webfx.kit.mapper.peers.javafxgraphics.base with parameters of type ObservableValueModifier and TypeMethodDescriptionprotected voidNodePeerBase.requestUpdateOnPropertiesChange(SceneRequester sceneRequester, ObservableValue... properties) booleanArcPeerBase.updateProperty(ObservableValue changedProperty) booleanCanvasPeerBase.updateProperty(ObservableValue changedProperty) booleanCirclePeerBase.updateProperty(ObservableValue changedProperty) booleanImageViewPeerBase.updateProperty(ObservableValue changedProperty) booleanLinePeerBase.updateProperty(ObservableValue changedProperty) booleanNodePeerBase.updateProperty(ObservableValue changedProperty) protected <T> booleanNodePeerBase.updateProperty(ObservableValue<T> property, ObservableValue changedProperty, Consumer<T> updater) default booleanNodePeerMixin.updateProperty(ObservableValue changedProperty) booleanPathPeerBase.updateProperty(ObservableValue changedProperty) booleanRectanglePeerBase.updateProperty(ObservableValue changedProperty) booleanRegionPeerBase.updateProperty(ObservableValue changedProperty) booleanShapePeerBase.updateProperty(ObservableValue changedProperty) booleanSVGPathPeerBase.updateProperty(ObservableValue changedProperty) booleanTextPeerBase.updateProperty(ObservableValue changedProperty) -
Uses of ObservableValue in dev.webfx.kit.mapper.peers.javafxweb.base
Methods in dev.webfx.kit.mapper.peers.javafxweb.base with parameters of type ObservableValueModifier and TypeMethodDescriptionbooleanWebViewPeerBase.updateProperty(ObservableValue changedProperty) -
Uses of ObservableValue in dev.webfx.kit.mapper.peers.javafxweb.spi.gwt
Methods in dev.webfx.kit.mapper.peers.javafxweb.spi.gwt with parameters of type ObservableValueModifier and TypeMethodDescriptionbooleanEmulWebViewPeerBase.updateProperty(ObservableValue changedProperty) -
Uses of ObservableValue in dev.webfx.kit.util.properties
Methods in dev.webfx.kit.util.properties that return ObservableValueModifier and TypeMethodDescriptionstatic <T1,T2, R> ObservableValue<R> FXProperties.combine(ObservableValue<? extends T1> p1, ObservableValue<? extends T2> p2, BiFunction<? super T1, ? super T2, ? extends R> combineFunction) static <T,R> ObservableValue<R> FXProperties.compute(ObservableValue<? extends T> p, Function<? super T, ? extends R> function) static <T,R> ObservableValue<R> FXProperties.computeDeferred(ObservableValue<? extends T> p, Function<? super T, ? extends R> function) static <T> ObservableValue<T>FXProperties.deferredProperty(ObservableValue<T> p) static <T> ObservableValue<T>FXProperties.filter(ObservableValue<T> property, Predicate<T> predicate) Methods in dev.webfx.kit.util.properties with parameters of type ObservableValueModifier and TypeMethodDescriptionstatic <A,B> void FXProperties.bindConverted(Property<A> pA, ObservableValue<B> pB, Function<B, A> baConverter) static <T1,T2, R> ObservableValue<R> FXProperties.combine(ObservableValue<? extends T1> p1, ObservableValue<? extends T2> p2, BiFunction<? super T1, ? super T2, ? extends R> combineFunction) static <T,R> ObservableValue<R> FXProperties.compute(ObservableValue<? extends T> p, Function<? super T, ? extends R> function) static <T,R> ObservableValue<R> FXProperties.computeDeferred(ObservableValue<? extends T> p, Function<? super T, ? extends R> function) static <T> voidFXProperties.consume(ObservableValue<T> property, Consumer<T> consumer) static <T> ObservableValue<T>FXProperties.deferredProperty(ObservableValue<T> p) static <T> ObservableValue<T>FXProperties.filter(ObservableValue<T> property, Predicate<T> predicate) static <T> voidFXProperties.onPropertySet(ObservableValue<T> property, Consumer<T> valueConsumer) static <T> voidFXProperties.onPropertySet(ObservableValue<T> property, Consumer<T> valueConsumer, boolean callIfNullProperty) static UnregisterableFXProperties.runNowAndOnDoublePropertyChange(Consumer<Double> newValueListener, ObservableValue<Number> property) static <T> voidObservableLists.runNowAndOnListOrPropertiesChange(ListChangeListener<T> listener, ObservableList<T> list, ObservableValue... properties) static UnregisterableFXProperties.runNowAndOnPropertiesChange(Runnable runnable, ObservableValue... properties) static UnregisterableFXProperties.runNowAndOnPropertiesChange(Consumer<ObservableValue> consumer, ObservableValue... properties) static <T> UnregisterableFXProperties.runNowAndOnPropertyChange(Runnable listener, ObservableValue<T> property) static <T> UnregisterableFXProperties.runNowAndOnPropertyChange(Consumer<? super T> newValueListener, ObservableValue<T> property) static <T> UnregisterableFXProperties.runNowAndOnPropertyChange(ChangeListener<? super T> listener, ObservableValue<T> property) static UnregisterableFXProperties.runOnDoublePropertyChange(Consumer<Double> newValueListener, ObservableValue<Number> property) static UnregisterableFXProperties.runOnIntegerPropertyChange(Consumer<Integer> newValueListener, ObservableValue<Number> property) static <T> voidObservableLists.runOnListOrPropertiesChange(ListChangeListener<T> listener, ObservableList<T> list, ObservableValue... properties) static UnregisterableFXProperties.runOnPropertiesChange(Runnable runnable, ObservableValue... properties) static UnregisterableFXProperties.runOnPropertiesChange(Consumer<ObservableValue> consumer, ObservableValue... properties) static <T> UnregisterableFXProperties.runOnPropertyChange(Runnable listener, ObservableValue<T> property) static <T> UnregisterableFXProperties.runOnPropertyChange(Consumer<? super T> newValueListener, ObservableValue<T> property) static <T> UnregisterableFXProperties.runOnPropertyChange(ChangeListener<? super T> listener, ObservableValue<T> property) static <T> UnregisterableFXProperties.runOrUnregisterOnPropertyChange(UnregisterableChangeListener<T> unregisterableChangeListener, ObservableValue<T> property) Method parameters in dev.webfx.kit.util.properties with type arguments of type ObservableValueModifier and TypeMethodDescriptionstatic UnregisterableFXProperties.runNowAndOnPropertiesChange(Runnable runnable, Collection<ObservableValue> properties) static UnregisterableFXProperties.runNowAndOnPropertiesChange(Consumer<ObservableValue> consumer, Collection<ObservableValue> properties) static UnregisterableFXProperties.runNowAndOnPropertiesChange(Consumer<ObservableValue> consumer, Collection<ObservableValue> properties) static UnregisterableFXProperties.runNowAndOnPropertiesChange(Consumer<ObservableValue> consumer, ObservableValue... properties) static UnregisterableFXProperties.runOnPropertiesChange(Runnable runnable, Collection<ObservableValue> properties) static UnregisterableFXProperties.runOnPropertiesChange(Consumer<ObservableValue> consumer, Collection<ObservableValue> properties) static UnregisterableFXProperties.runOnPropertiesChange(Consumer<ObservableValue> consumer, Collection<ObservableValue> properties) static UnregisterableFXProperties.runOnPropertiesChange(Consumer<ObservableValue> consumer, ObservableValue... properties) Constructors in dev.webfx.kit.util.properties with parameters of type ObservableValueModifierConstructorDescriptionUnregisterableListener(Consumer<ObservableValue> propertyConsumer, ObservableValue... observableValues) UnregisterableListener(ChangeListener changeListener, ObservableValue... observableValues) Constructor parameters in dev.webfx.kit.util.properties with type arguments of type ObservableValueModifierConstructorDescriptionUnregisterableListener(Consumer<ObservableValue> propertyConsumer, ObservableValue... observableValues) -
Uses of ObservableValue in dev.webfx.kit.util.properties.conversion
Classes in dev.webfx.kit.util.properties.conversion that implement ObservableValueFields in dev.webfx.kit.util.properties.conversion declared as ObservableValueModifier and TypeFieldDescriptionprotected final ObservableValue<B>ConvertedObservableValue.observableValueMethods in dev.webfx.kit.util.properties.conversion with parameters of type ObservableValueModifier and TypeMethodDescriptionvoidConvertedProperty.bind(ObservableValue<? extends A> observable) Constructors in dev.webfx.kit.util.properties.conversion with parameters of type ObservableValueModifierConstructorDescriptionConvertedObservableValue(ObservableValue<B> observableValue, dev.webfx.platform.util.function.Converter<B, A> bToAConverter) -
Uses of ObservableValue in javafx.beans.binding
Subinterfaces of ObservableValue in javafx.beans.bindingModifier and TypeInterfaceDescriptioninterfaceBinding<T>ABindingcalculates a value that depends on one or more sources.interfaceA tagging interface to mark all Bindings that wrap a number-value.interfaceANumberExpressionis aObservableNumberValueplus additional convenience methods to generate bindings in a fluent style.Classes in javafx.beans.binding that implement ObservableValueModifier and TypeClassDescriptionclassBase class that provides most of the functionality needed to implement aBindingof abooleanvalue.classABooleanExpressionis aObservableBooleanValueplus additional convenience methods to generate bindings in a fluent style.classBase class that provides most of the functionality needed to implement aBindingof adoublevalue.classADoubleExpressionis aObservableDoubleValueplus additional convenience methods to generate bindings in a fluent style.classBase class that provides most of the functionality needed to implement aBindingof anintvalue.classclassAListExpressionis aObservableListValueplus additional convenience methods to generate bindings in a fluent style.classBase class that provides most of the functionality needed to implement aBindingof alongvalue.classLongExpressionis anObservableLongValueplus additional convenience methods to generate bindings in a fluent style.classclassAObjectExpressionis aObservableObjectValueplus additional convenience methods to generate bindings in a fluent style.classBase class that provides most of the functionality needed to implement aBindingof aString.classAStringExpressionis aObservableStringValueplus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding with parameters of type ObservableValueModifier and TypeMethodDescriptionstatic BooleanExpressionBooleanExpression.booleanExpression(ObservableValue<Boolean> value) Returns aBooleanExpressionthat wraps anObservableValue.static <T extends Number>
LongExpressionLongExpression.longExpression(ObservableValue<T> value) Returns aLongExpressionthat wraps anObservableValue. -
Uses of ObservableValue in javafx.beans.property
Subinterfaces of ObservableValue in javafx.beans.propertyModifier and TypeInterfaceDescriptioninterfaceProperty<T>Generic interface that defines the methods common to all (writable) properties independent of their type.interfaceGeneric interface that defines the methods common to all readable properties independent of their type.Classes in javafx.beans.property that implement ObservableValueModifier and TypeClassDescriptionclassThis class provides a full implementation of aPropertywrapping abooleanvalue.classThe classBooleanPropertyBaseis the base class for a property wrapping abooleanvalue.classThis class defines aPropertywrapping adoublevalue.classThe classDoublePropertyBaseis the base class for a property wrapping adoublevalue.classThis class defines aPropertywrapping anintvalue.classThe classIntegerPropertyBaseis the base class for a property wrapping aintvalue.classListProperty<E>This class provides a full implementation of aPropertywrapping aObservableList.classThe classListPropertyBaseis the base class for a property wrapping anObservableList.classThis class defines aPropertywrapping alongvalue.classThe classLongPropertyBaseis the base class for a property wrapping alongvalue.classThis class provides a full implementation of aPropertywrapping an arbitraryObject.classThe classObjectPropertyBaseis the base class for a property wrapping an arbitraryObject.classSuper class for all readonly properties wrapping aboolean.classBase class for all readonly properties wrapping aboolean.classSuper class for all readonly properties wrapping adouble.classSuper class for all readonly properties wrapping anint.classBase class for all readonly properties wrapping anint.classSuper class for all readonly properties wrapping anObservableList.classSuperclass for all readonly properties wrapping along.classSuper class for all readonly properties wrapping an arbitraryObject.classBase class for all readonly properties wrapping an arbitraryObject.classThis class provides a convenient class to define read-only properties.classSuper class for all readonly properties wrapping anString.classThis class provides a full implementation of aPropertywrapping abooleanvalue.classThis class provides a full implementation of aPropertywrapping adoublevalue.classThis class provides a full implementation of aPropertywrapping aintvalue.classThis class provides a full implementation of aPropertywrapping anObservableList.classThis class provides a full implementation of aPropertywrapping alongvalue.classThis class provides a full implementation of aPropertywrapping an arbitraryObject.classThis class provides a full implementation of aPropertywrapping aStringvalue.classThis class provides a full implementation of aPropertywrapping aStringvalue.classThe classStringPropertyBaseis the base class for a property wrapping aStringvalue.Methods in javafx.beans.property with parameters of type ObservableValueModifier and TypeMethodDescriptionvoidBooleanPropertyBase.bind(ObservableValue<? extends Boolean> rawObservable) Create a unidirection binding for thisProperty.voidDoublePropertyBase.bind(ObservableValue<? extends Number> rawObservable) Create a unidirection binding for thisProperty.voidIntegerPropertyBase.bind(ObservableValue<? extends Number> rawObservable) Create a unidirection binding for thisProperty.voidListPropertyBase.bind(ObservableValue<? extends ObservableList<E>> newObservable) voidLongPropertyBase.bind(ObservableValue<? extends Number> rawObservable) Create a unidirection binding for thisProperty.voidObjectPropertyBase.bind(ObservableValue<? extends T> newObservable) Create a unidirection binding for thisProperty.voidProperty.bind(ObservableValue<? extends T> observable) Create a unidirection binding for thisProperty.voidStringPropertyBase.bind(ObservableValue<? extends String> newObservable) Create a unidirection binding for thisProperty. -
Uses of ObservableValue in javafx.beans.value
Subinterfaces of ObservableValue in javafx.beans.valueModifier and TypeInterfaceDescriptioninterfaceAn observable boolean value.interfaceAn observable double value.interfaceAn observable float value.interfaceAn observable integer value.interfaceAn observable reference to anObservableList.interfaceAn observable long value.interfaceObservableMapValue<K,V> An observable reference to anObservableMap.interfaceA common interface of all sub-interfaces ofObservableValuethat wrap a number.interfaceAn observable typedObjectvalue.interfaceAn observable String value.Classes in javafx.beans.value that implement ObservableValueModifier and TypeClassDescriptionclassA convenience class for creating implementations ofObservableValue.Methods in javafx.beans.value with parameters of type ObservableValueModifier and TypeMethodDescriptionvoidChangeListener.changed(ObservableValue<? extends T> observable, T oldValue, T newValue) This method needs to be provided by an implementation ofChangeListener.voidWeakChangeListener.changed(ObservableValue<? extends T> observable, T oldValue, T newValue) This method needs to be provided by an implementation ofChangeListener. -
Uses of ObservableValue in javafx.css
Classes in javafx.css that implement ObservableValueModifier and TypeClassDescriptionclassThis class extendsBooleanPropertyBaseand provides a partial implementation of aStyleableProperty.classThis class extendsIntegerPropertyBaseand provides a partial implementation of aStyleableProperty.classThis class extendsObjectPropertyBaseand provides a partial implementation of aStyleableProperty.Methods in javafx.css with parameters of type ObservableValueModifier and TypeMethodDescriptionvoidStyleableBooleanProperty.bind(ObservableValue<? extends Boolean> observable) Create a unidirection binding for thisProperty.voidStyleableIntegerProperty.bind(ObservableValue<? extends Number> observable) Create a unidirection binding for thisProperty.voidStyleableObjectProperty.bind(ObservableValue<? extends T> observable) Create a unidirection binding for thisProperty. -
Uses of ObservableValue in javafx.scene.control
Methods in javafx.scene.control that return types with arguments of type ObservableValueModifier and TypeMethodDescriptionprotected final Consumer<ObservableValue<?>>SkinBase.unregisterChangeListeners(ObservableValue<?> property) Unregisters all change listeners that have been registered usingSkinBase.registerChangeListener(ObservableValue, Consumer)for the given property.Methods in javafx.scene.control with parameters of type ObservableValueModifier and TypeMethodDescriptionprotected final voidSkinBase.registerChangeListener(ObservableValue<?> property, Consumer<ObservableValue<?>> consumer) Subclasses can invoke this method to register that they want to listen to property change events for the given property.protected final Consumer<ObservableValue<?>>SkinBase.unregisterChangeListeners(ObservableValue<?> property) Unregisters all change listeners that have been registered usingSkinBase.registerChangeListener(ObservableValue, Consumer)for the given property.Method parameters in javafx.scene.control with type arguments of type ObservableValueModifier and TypeMethodDescriptionprotected final voidSkinBase.registerChangeListener(ObservableValue<?> property, Consumer<ObservableValue<?>> consumer) Subclasses can invoke this method to register that they want to listen to property change events for the given property.