Uses of Class
javafx.beans.binding.MapExpression
-
Packages that use MapExpression 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 MapExpression in javafx.beans.binding
Subclasses of MapExpression in javafx.beans.binding Modifier and Type Class Description class
MapBinding<K,V>
Base class that provides most of the functionality needed to implement aBinding
of anObservableMap
.Methods in javafx.beans.binding that return MapExpression Modifier and Type Method Description static <K,V> MapExpression<K,V>
MapExpression. mapExpression(ObservableMapValue<K,V> value)
Returns aMapExpression
that wraps aObservableMapValue
. -
Uses of MapExpression in javafx.beans.property
Subclasses of MapExpression in javafx.beans.property 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
.
-