Package | Description |
---|---|
com.sun.javafx.binding | |
javafx.beans.binding |
Characteristics of Bindings
|
javafx.scene.text |
Provides the set of classes for fonts and renderable Text Node.
|
Modifier and Type | Class and Description |
---|---|
static class |
SelectBinding.AsObject<T> |
Modifier and Type | Class and Description |
---|---|
private class |
When.ObjectCondition<T>
If-then-else expression returning general objects.
|
Modifier and Type | Method and Description |
---|---|
static <T> ObjectBinding<T> |
Bindings.createObjectBinding(java.util.concurrent.Callable<T> func,
Observable... dependencies)
Helper function to create a custom
ObjectBinding . |
ObjectBinding<T> |
When.ObjectConditionBuilder.otherwise(ObservableObjectValue<T> otherwiseValue)
Defines the
ObservableObjectValue which
value is returned by the ternary expression if the condition is
false . |
ObjectBinding<T> |
When.ObjectConditionBuilder.otherwise(T otherwiseValue)
Defines a constant value of the ternary expression, that is returned
if the condition is
false . |
static <T> ObjectBinding<T> |
Bindings.select(java.lang.Object root,
java.lang.String... steps)
Creates a binding used to get a member, such as
a.b.c . |
static <T> ObjectBinding<T> |
Bindings.select(ObservableValue<?> root,
java.lang.String... steps)
Creates a binding used to get a member, such as
a.b.c . |
ObjectBinding<E> |
ListExpression.valueAt(int index)
Creates a new
ObjectBinding that contains the element at the specified position. |
ObjectBinding<V> |
MapExpression.valueAt(K key)
Creates a new
ObjectBinding that contains the mapping of the specified key. |
ObjectBinding<E> |
ListExpression.valueAt(ObservableIntegerValue index)
Creates a new
ObjectBinding that contains the element at the specified position. |
static <E> ObjectBinding<E> |
Bindings.valueAt(ObservableList<E> op,
int index)
Creates a new
ObjectBinding that contains the element
of an ObservableList at the specified position. |
static <E> ObjectBinding<E> |
Bindings.valueAt(ObservableList<E> op,
ObservableIntegerValue index)
Creates a new
ObjectBinding that contains the element
of an ObservableList at the specified position. |
static <E> ObjectBinding<E> |
Bindings.valueAt(ObservableList<E> op,
ObservableNumberValue index)
Creates a new
ObjectBinding that contains the element
of an ObservableList at the specified position. |
static <K,V> ObjectBinding<V> |
Bindings.valueAt(ObservableMap<K,V> op,
K key)
Creates a new
ObjectBinding that contains the mapping of a specific key
in an ObservableMap . |
static <K,V> ObjectBinding<V> |
Bindings.valueAt(ObservableMap<K,V> op,
ObservableValue<? extends K> key)
Creates a new
ObjectBinding that contains the mapping of a specific key
in an ObservableMap . |
ObjectBinding<V> |
MapExpression.valueAt(ObservableValue<K> key)
Creates a new
ObjectBinding that contains the mapping of the specified key. |
Modifier and Type | Field and Description |
---|---|
private ObjectBinding<PathElement[]> |
Text.TextAttribute.impl_caretBinding |
private ObjectBinding<PathElement[]> |
Text.TextAttribute.impl_selectionBinding |