Uses of Interface
javafx.beans.value.ObservableMapValue
-
Packages that use ObservableMapValue Package Description javafx.beans.binding Provides classes that create and operate on aBinding
that calculates a value that depends on one or more sources.javafx.beans.property The packagejavafx.beans.property
defines read-only properties and writable properties, plus a number of implementations. -
-
Uses of ObservableMapValue in javafx.beans.binding
Classes in javafx.beans.binding that implement ObservableMapValue Modifier and Type Class Description class
MapBinding<K,V>
Base class that provides most of the functionality needed to implement aBinding
of anObservableMap
.class
MapExpression<K,V>
MapExpression
is anObservableMapValue
plus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding with parameters of type ObservableMapValue Modifier and Type Method Description static <K,V>
MapExpression<K,V>MapExpression. mapExpression(ObservableMapValue<K,V> value)
Returns aMapExpression
that wraps aObservableMapValue
. -
Uses of ObservableMapValue in javafx.beans.property
Classes in javafx.beans.property that implement ObservableMapValue Modifier and Type Class Description 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
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
SimpleMapProperty<K,V>
This class provides a full implementation of aProperty
wrapping anObservableMap
.
-