Class FXStringConverter<T>

java.lang.Object
javafx.util.StringConverter<T>
org.tquadrat.foundation.fx.util.FXStringConverter<T>
Type Parameters:
T - The target type for the conversion.
All Implemented Interfaces:
Serializable, StringConverter<T>

@ClassVersion(sourceVersion="$Id: FXStringConverter.java 1113 2024-03-12 02:01:14Z tquadrat $") @API(status=STABLE, since="0.4.3") public final class FXStringConverter<T> extends StringConverter<T> implements StringConverter<T>

An implementation of org.tquadrat.foundation.lang.StringConverter (the Foundation StringConverter) that extends javafx.util.StringConverter (the JavaFX StringConverter). It delegates the transformation work to the Foundation StringConverter instance that is provided to the constructor.

To reuse an existing JavaFX StringConverter, you can use the method wrap(StringConverter).

To get just a Foundation StringConverter, you can use this code (here BigInteger is used as an example):


      final var x = new BigIntegerStringConverter();
      final var c = new GenericStringConverter<BigInteger>( s -> isNull( s ) ? null : x.fromString( s.toString() ), x::toString );
  

If you need to build a String converter from scratch that should serve both purposes, write your own class that extends javafx.util.StringConverter and implements org.tquadrat.foundation.lang.StringConverter, and then implement the methods accordingly. Keep in mind that the method signature for fromString() differs for both the abstract class and the interface because of the different argument type (String vs. CharSequence).

When a reference to an instance of ErrorDisplay is provided to the constructor, an error messsage is displayed when the fromString() conversion fails.

Note:
  • The method fromString() of a JavaFX StringConverter may always return null, for each and every argument, but this is not allowed for an implementation of the method with the same name for a Foundation StringConverter.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: FXStringConverter.java 1113 2024-03-12 02:01:14Z tquadrat $
Since:
0.4.3
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.fx.util.FXStringConverter"

UML Diagram for "org.tquadrat.foundation.fx.util.FXStringConverter"

UML Diagram for "org.tquadrat.foundation.fx.util.FXStringConverter"