Uses of Interface
javafx.beans.value.ObservableStringValue
Package
Description
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources.The package
javafx.beans.property
defines read-only
properties and writable properties, plus a number of implementations.Provides various classes that act as adapters between a regular Java Bean
property and a corresponding
JavaFX
Property
.Provides API for making properties styleable via CSS and for supporting
pseudo-class state.
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
-
Uses of ObservableStringValue in javafx.beans.binding
Modifier and TypeClassDescriptionclass
Base class that provides most of the functionality needed to implement aBinding
of aString
.class
StringExpression
is anObservableStringValue
plus additional convenience methods to generate bindings in a fluent style.Modifier and TypeMethodDescriptionstatic BooleanBinding
Bindings.equal
(String op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is equal to a constant value.static BooleanBinding
Bindings.equal
(ObservableStringValue op1, String op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is equal to a constant value.static BooleanBinding
Bindings.equal
(ObservableStringValue op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableStringValue
are equal.static BooleanBinding
Bindings.equalIgnoreCase
(String op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is equal to a constant value ignoring case.static BooleanBinding
Bindings.equalIgnoreCase
(ObservableStringValue op1, String op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is equal to a constant value ignoring case.static BooleanBinding
Bindings.equalIgnoreCase
(ObservableStringValue op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableStringValue
are equal ignoring case.static BooleanBinding
Bindings.greaterThan
(String op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the value of a constant value is greater than the value of aObservableStringValue
.static BooleanBinding
Bindings.greaterThan
(ObservableStringValue op1, String op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is greater than a constant value.static BooleanBinding
Bindings.greaterThan
(ObservableStringValue op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableStringValue
is greater than the value of the second.StringExpression.greaterThan
(ObservableStringValue other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is greater than anotherObservableStringValue
.static BooleanBinding
Bindings.greaterThanOrEqual
(String op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableStringValue
.static BooleanBinding
Bindings.greaterThanOrEqual
(ObservableStringValue op1, String op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is greater than or equal to a constant value.static BooleanBinding
Bindings.greaterThanOrEqual
(ObservableStringValue op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableStringValue
is greater than or equal to the value of the second.StringExpression.greaterThanOrEqualTo
(ObservableStringValue other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is greater than or equal to anotherObservableStringValue
.static BooleanBinding
Bindings.isEmpty
(ObservableStringValue op) StringExpression.isEqualTo
(ObservableStringValue other) StringExpression.isEqualToIgnoreCase
(ObservableStringValue other) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableStringValue
are equal ignoring case.static BooleanBinding
Bindings.isNotEmpty
(ObservableStringValue op) StringExpression.isNotEqualTo
(ObservableStringValue other) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableStringValue
are not equal.StringExpression.isNotEqualToIgnoreCase
(ObservableStringValue other) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableStringValue
are not equal ignoring case.static IntegerBinding
Bindings.length
(ObservableStringValue op) Creates a newIntegerBinding
that holds the length of aObservableStringValue
.static BooleanBinding
Bindings.lessThan
(String op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableStringValue
.static BooleanBinding
Bindings.lessThan
(ObservableStringValue op1, String op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is less than a constant value.static BooleanBinding
Bindings.lessThan
(ObservableStringValue op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableStringValue
is less than the value of the second.StringExpression.lessThan
(ObservableStringValue other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is less than anotherObservableStringValue
.static BooleanBinding
Bindings.lessThanOrEqual
(String op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableStringValue
.static BooleanBinding
Bindings.lessThanOrEqual
(ObservableStringValue op1, String op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is less than or equal to a constant value.static BooleanBinding
Bindings.lessThanOrEqual
(ObservableStringValue op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableStringValue
is less than or equal to the value of the second.StringExpression.lessThanOrEqualTo
(ObservableStringValue other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is less than or equal to anotherObservableStringValue
.static BooleanBinding
Bindings.notEqual
(String op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is not equal to a constant value.static BooleanBinding
Bindings.notEqual
(ObservableStringValue op1, String op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is not equal to a constant value.static BooleanBinding
Bindings.notEqual
(ObservableStringValue op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableStringValue
are not equal.static BooleanBinding
Bindings.notEqualIgnoreCase
(String op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is not equal to a constant value ignoring case.static BooleanBinding
Bindings.notEqualIgnoreCase
(ObservableStringValue op1, String op2) Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is not equal to a constant value ignoring case.static BooleanBinding
Bindings.notEqualIgnoreCase
(ObservableStringValue op1, ObservableStringValue op2) Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableStringValue
are not equal ignoring case.When.StringConditionBuilder.otherwise
(ObservableStringValue otherwiseValue) Defines theObservableStringValue
which value is returned by the ternary expression if the condition isfalse
.When.then
(ObservableStringValue thenValue) Defines theObservableStringValue
which value is returned by the ternary expression if the condition istrue
. -
Uses of ObservableStringValue in javafx.beans.property
Modifier and TypeClassDescriptionclass
Superclass for all readonly properties wrapping anString
.class
Base class for all readonly properties wrapping aString
.class
This class provides a convenient class to define read-only properties.class
This class provides a full implementation of aProperty
wrapping aString
value.class
This class provides a full implementation of aProperty
wrapping aString
value.class
The classStringPropertyBase
is the base class for a property wrapping aString
value. -
Uses of ObservableStringValue in javafx.beans.property.adapter
Modifier and TypeClassDescriptionfinal class
AJavaBeanStringProperty
provides an adapter between a regular Java Bean property of typeString
and a JavaFXStringProperty
.final class
AReadOnlyJavaBeanStringProperty
provides an adapter between a regular read only Java Bean property of typeString
and a JavaFXReadOnlyStringProperty
. -
Uses of ObservableStringValue in javafx.css
Modifier and TypeClassDescriptionclass
This class extendsSimpleStringProperty
and provides a full implementation of aStyleableProperty
.class
This class extendsStringPropertyBase
and provides a partial implementation of aStyleableProperty
. -
Uses of ObservableStringValue in javafx.scene.control
Modifier and TypeInterfaceDescriptionprotected static interface
Interface representing a text input's content.