Uses of Class
javafx.beans.binding.StringExpression
-
Packages that use StringExpression Package Description javafx.beans.binding Provides classes that create and operate on aBinding
that calculates a value that depends on one or more sources.javafx.beans.property The packagejavafx.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 correspondingJavaFX Property
.javafx.css Provides API for making properties styleable via CSS and for supporting pseudo-class state.javafx.scene.chart The JavaFX User Interface provides a set of chart components that are a very convenient way for data visualization. -
-
Uses of StringExpression in javafx.beans.binding
Subclasses of StringExpression in javafx.beans.binding Modifier and Type Class Description class
StringBinding
Base class that provides most of the functionality needed to implement aBinding
of aString
.Methods in javafx.beans.binding that return StringExpression Modifier and Type Method Description static StringExpression
Bindings. concat(Object... args)
Returns aStringExpression
that holds the value of the concatenation of multipleObjects
.StringExpression
StringExpression. concat(Object other)
Returns aStringExpression
that holds the value of thisStringExpression
concatenated with anotherObject
.static StringExpression
Bindings. convert(ObservableValue<?> observableValue)
Returns aStringExpression
that wraps aObservableValue
.static StringExpression
Bindings. format(String format, Object... args)
Creates aStringExpression
that holds the value of multipleObjects
formatted according to a formatString
.static StringExpression
Bindings. format(Locale locale, String format, Object... args)
Creates aStringExpression
that holds the value of multipleObjects
formatted according to a formatString
and a specifiedLocale
static StringExpression
StringExpression. stringExpression(ObservableValue<?> value)
Returns aStringExpression
that wraps aObservableValue
. -
Uses of StringExpression in javafx.beans.property
Subclasses of StringExpression in javafx.beans.property Modifier and Type Class Description 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
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 StringExpression in javafx.beans.property.adapter
Subclasses of StringExpression in javafx.beans.property.adapter Modifier and Type Class Description class
JavaBeanStringProperty
AJavaBeanStringProperty
provides an adapter between a regular Java Bean property of typeString
and a JavaFXStringProperty
.class
ReadOnlyJavaBeanStringProperty
AReadOnlyJavaBeanStringProperty
provides an adapter between a regular read only Java Bean property of typeString
and a JavaFXReadOnlyStringProperty
. -
Uses of StringExpression in javafx.css
Subclasses of StringExpression in javafx.css Modifier and Type Class Description class
SimpleStyleableStringProperty
This class extendsSimpleStringProperty
and provides a full implementation of aStyleableProperty
.class
StyleableStringProperty
This class extendsStringPropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of StringExpression in javafx.scene.chart
Methods in javafx.scene.chart that return StringExpression Modifier and Type Method Description StringExpression
Axis.TickMark. labelProperty()
The display text for tick mark
-