static <T> ObjectBinding<T> |
Bindings.createObjectBinding(Callable<T> func,
Observable... dependencies) |
|
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(Object root,
String... steps) |
Creates a binding used to get a member, such as a.b.c .
|
static <T> ObjectBinding<T> |
Bindings.select(ObservableValue<?> root,
String... steps) |
Creates a binding used to get a member, such as a.b.c .
|
static <E> ObjectBinding<E> |
Bindings.valueAt(ObservableList<E> op,
int index) |
|
static <E> ObjectBinding<E> |
Bindings.valueAt(ObservableList<E> op,
ObservableIntegerValue index) |
|
static <E> ObjectBinding<E> |
Bindings.valueAt(ObservableList<E> op,
ObservableNumberValue index) |
|
static <K,V> ObjectBinding<V> |
Bindings.valueAt(ObservableMap<K,V> op,
ObservableValue<? extends K> key) |
|
static <K,V> ObjectBinding<V> |
Bindings.valueAt(ObservableMap<K,V> op,
K key) |
|
ObjectBinding<E> |
ListExpression.valueAt(int index) |
Creates a new ObjectBinding that contains the element at the specified position.
|
ObjectBinding<E> |
ListExpression.valueAt(ObservableIntegerValue index) |
Creates a new ObjectBinding that contains the element at the specified position.
|
ObjectBinding<V> |
MapExpression.valueAt(ObservableValue<K> key) |
Creates a new ObjectBinding that contains the mapping of the specified key.
|
ObjectBinding<V> |
MapExpression.valueAt(K key) |
Creates a new ObjectBinding that contains the mapping of the specified key.
|