Uses of Interface
javafx.beans.value.ObservableObjectValue
Package | Description |
---|---|
javafx.beans.binding |
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources. |
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.beans.value |
The package
javafx.beans.value contains the two
fundamental interfaces ObservableValue and WritableValue and all of its sub-interfaces. |
javafx.css |
Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
|
javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
-
Uses of ObservableObjectValue in javafx.beans.binding
Classes in javafx.beans.binding that implement ObservableObjectValue Modifier and Type Class Description class
ListBinding<E>
Base class that provides most of the functionality needed to implement aBinding
of anObservableList
.class
ListExpression<E>
ListExpression
is anObservableListValue
plus additional convenience methods to generate bindings in a fluent style.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.class
ObjectBinding<T>
Base class that provides most of the functionality needed to implement aBinding
of anObject
.class
ObjectExpression<T>
ObjectExpression
is anObservableObjectValue
plus additional convenience methods to generate bindings in a fluent style.class
SetBinding<E>
Base class that provides most of the functionality needed to implement aBinding
of anObservableSet
.class
SetExpression<E>
SetExpression
is anObservableSetValue
plus additional convenience methods to generate bindings in a fluent style.class
StringBinding
Base class that provides most of the functionality needed to implement aBinding
of aString
.class
StringExpression
StringExpression
is anObservableStringValue
plus additional convenience methods to generate bindings in a fluent style.Methods in javafx.beans.binding with parameters of type ObservableObjectValue Modifier and Type Method Description static BooleanBinding
Bindings. equal(Object op1, ObservableObjectValue<?> op2)
Creates a newBooleanBinding
that holdstrue
if the value of anObservableObjectValue
is equal to a constant value.static BooleanBinding
Bindings. equal(ObservableObjectValue<?> op1, Object op2)
Creates a newBooleanBinding
that holdstrue
if the value of anObservableObjectValue
is equal to a constant value.static BooleanBinding
Bindings. equal(ObservableObjectValue<?> op1, ObservableObjectValue<?> op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableObjectValue
are equal.BooleanBinding
ObjectExpression. isEqualTo(ObservableObjectValue<?> other)
Creates a newBooleanExpression
that holdstrue
if this and anotherObservableObjectValue
are equal.BooleanBinding
ObjectExpression. isNotEqualTo(ObservableObjectValue<?> other)
Creates a newBooleanExpression
that holdstrue
if this and anotherObservableObjectValue
are not equal.static BooleanBinding
Bindings. isNotNull(ObservableObjectValue<?> op)
static BooleanBinding
Bindings. isNull(ObservableObjectValue<?> op)
static BooleanBinding
Bindings. notEqual(Object op1, ObservableObjectValue<?> op2)
Creates a newBooleanBinding
that holdstrue
if the value of anObservableObjectValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(ObservableObjectValue<?> op1, Object op2)
Creates a newBooleanBinding
that holdstrue
if the value of anObservableObjectValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(ObservableObjectValue<?> op1, ObservableObjectValue<?> op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableObjectValue
are not equal.static <T> ObjectExpression<T>
ObjectExpression. objectExpression(ObservableObjectValue<T> value)
Returns anObjectExpression
that wraps anObservableObjectValue
.ObjectBinding<T>
When.ObjectConditionBuilder. otherwise(ObservableObjectValue<T> otherwiseValue)
Defines theObservableObjectValue
which value is returned by the ternary expression if the condition isfalse
.<T> When.ObjectConditionBuilder<T>
When. then(ObservableObjectValue<T> thenValue)
Defines theObservableObjectValue
which value is returned by the ternary expression if the condition istrue
. -
Uses of ObservableObjectValue in javafx.beans.property
Classes in javafx.beans.property that implement ObservableObjectValue Modifier and Type Class Description 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
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
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
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
SimpleListProperty<E>
This class provides a full implementation of aProperty
wrapping anObservableList
.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. -
Uses of ObservableObjectValue in javafx.beans.property.adapter
Classes in javafx.beans.property.adapter that implement ObservableObjectValue Modifier and Type Class Description 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
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 ObservableObjectValue in javafx.beans.value
Subinterfaces of ObservableObjectValue in javafx.beans.value Modifier and Type Interface Description interface
ObservableListValue<E>
An observable reference to anObservableList
.interface
ObservableMapValue<K,V>
An observable reference to anObservableMap
.interface
ObservableSetValue<E>
An observable reference to anObservableSet
.interface
ObservableStringValue
An observable String value. -
Uses of ObservableObjectValue in javafx.css
Classes in javafx.css that implement ObservableObjectValue Modifier and Type Class Description 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
StyleableObjectProperty<T>
This class extendsObjectPropertyBase
and provides a partial implementation of aStyleableProperty
.class
StyleableStringProperty
This class extendsStringPropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of ObservableObjectValue in javafx.scene.control
Subinterfaces of ObservableObjectValue in javafx.scene.control Modifier and Type Interface Description protected static interface
TextInputControl.Content
Interface representing a text input's content.