Uses of Class
javafx.beans.binding.StringBinding
Packages that use StringBinding
Package
Description
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources.-
Uses of StringBinding in javafx.beans.binding
Methods in javafx.beans.binding that return StringBindingModifier and TypeMethodDescriptionBooleanExpression.asString()
ListExpression.asString()
MapExpression.asString()
NumberExpression.asString()
NumberExpressionBase.asString()
ObjectExpression.asString()
SetExpression.asString()
static StringBinding
Bindings.createStringBinding(Callable<String> func, Observable... dependencies)
Helper function to create a customStringBinding
.Defines a constant value of the ternary expression, that is returned if the condition isfalse
.When.StringConditionBuilder.otherwise(ObservableStringValue otherwiseValue)
Defines theObservableStringValue
which value is returned by the ternary expression if the condition isfalse
.static StringBinding
Bindings.selectString(Object root, String... steps)
Creates a binding used to get a member, such asa.b.c
.static StringBinding
Bindings.selectString(ObservableValue<?> root, String... steps)
Creates a binding used to get a member, such asa.b.c
.static StringBinding
Bindings.stringValueAt(ObservableList<String> op, int index)
Creates a newStringBinding
that contains the element of anObservableList
at the specified position.static StringBinding
Bindings.stringValueAt(ObservableList<String> op, ObservableIntegerValue index)
Creates a newStringBinding
that contains the element of anObservableList
at the specified position.static StringBinding
Bindings.stringValueAt(ObservableList<String> op, ObservableNumberValue index)
Creates a newStringBinding
that contains the element of anObservableList
at the specified position.static <K> StringBinding
Bindings.stringValueAt(ObservableMap<K,String> op, ObservableValue<? extends K> key)
Creates a newStringBinding
that contains the mapping of a specific key in anObservableMap
.static <K> StringBinding
Bindings.stringValueAt(ObservableMap<K,String> op, K key)
Creates a newStringBinding
that contains the mapping of a specific key in anObservableMap
.