Uses of Class
javafx.beans.binding.StringBinding
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. |
-
Uses of StringBinding in javafx.beans.binding
Methods in javafx.beans.binding that return StringBinding Modifier and Type Method Description StringBinding
BooleanExpression. asString()
StringBinding
ListExpression. asString()
StringBinding
MapExpression. asString()
StringBinding
NumberExpression. asString()
StringBinding
NumberExpression. asString(String format)
StringBinding
NumberExpression. asString(Locale locale, String format)
StringBinding
NumberExpressionBase. asString()
StringBinding
NumberExpressionBase. asString(String format)
StringBinding
NumberExpressionBase. asString(Locale locale, String format)
StringBinding
ObjectExpression. asString()
StringBinding
ObjectExpression. asString(String format)
StringBinding
ObjectExpression. asString(Locale locale, String format)
StringBinding
SetExpression. asString()
static StringBinding
Bindings. createStringBinding(Callable<String> func, Observable... dependencies)
Helper function to create a customStringBinding
.StringBinding
When.StringConditionBuilder. otherwise(String otherwiseValue)
Defines a constant value of the ternary expression, that is returned if the condition isfalse
.StringBinding
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
.