Uses of Class
javafx.util.StringConverter
Packages that use StringConverter
Package
Description
-
Uses of StringConverter in com.sun.javafx.binding
Methods in com.sun.javafx.binding with parameters of type StringConverter -
Uses of StringConverter in javafx.beans.binding
Methods in javafx.beans.binding with parameters of type StringConverterModifier and TypeMethodDescriptionstatic <T> void
Bindings.bindBidirectional
(Property<String> stringProperty, Property<T> otherProperty, StringConverter<T> converter) Generates a bidirectional binding (or "bind with inverse") between aString
-Property
and anotherProperty
using the specifiedStringConverter
for conversion. -
Uses of StringConverter in javafx.beans.property
Methods in javafx.beans.property with parameters of type StringConverterModifier and TypeMethodDescription<T> void
StringProperty.bindBidirectional
(Property<T> other, StringConverter<T> converter) Create a bidirectional binding between thisStringProperty
and another arbitrary property. -
Uses of StringConverter in javafx.scene.control
Methods in javafx.scene.control that return StringConverterModifier and TypeMethodDescriptionfinal StringConverter<T>
ChoiceBox.getConverter()
Gets the value of theconverter
property.final StringConverter<LocalDate>
DatePicker.getConverter()
Gets the value of theconverter
property.Methods in javafx.scene.control that return types with arguments of type StringConverterModifier and TypeMethodDescriptionChoiceBox.converterProperty()
Allows a way to specify how to represent objects in the items list.final Property<StringConverter<LocalDate>>
DatePicker.converterProperty()
Methods in javafx.scene.control with parameters of type StringConverterModifier and TypeMethodDescriptionfinal void
ChoiceBox.setConverter
(StringConverter<T> value) Sets the value of theconverter
property.final void
DatePicker.setConverter
(StringConverter<LocalDate> value) Sets the value of theconverter
property.