java.lang.Object
org.tquadrat.foundation.util.stringconverter.TextStringConverter
All Implemented Interfaces:
Serializable, StringConverter<String>

@ClassVersion(sourceVersion="$Id: TextStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $") @API(status=STABLE, since="0.1.0") public final class TextStringConverter extends Object implements StringConverter<String>

An implementation of StringConverter for text values.

Although technically, a text is a String and therefore a conversion to String would be redundant (at best), semantically there is difference, and this implementation of StringConverter takes care of that.

Other than for the conversions performed by StringStringConverter, the results are not identical with the input values: a text may contain several special characters, like new lines, tabs, backspaces or form feeds. These will be translated by the toString(String) method into escape sequences, while fromString(CharSequence) will translate the escape sequences back to the special characters, according to the table below.

Special Characters and their escape sequences
NameCodeEscapeComment
backspaceU+0008\b 
horizontal tabU+0009\t 
line feedU+000A\nThe UNIX line termination, also used in Java internally as the new-line character
form feedU+000C\fRarely used
carriage returnU+000D\rThe Windows line termination is CRLF or \r\n
spaceU+0020\sA space or blank will be escaped only if it is the very first or the last character of a text
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: TextStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $
Since:
0.1.0
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.util.stringconverter.TextStringConverter"

UML Diagram for "org.tquadrat.foundation.util.stringconverter.TextStringConverter"

UML Diagram for "org.tquadrat.foundation.util.stringconverter.TextStringConverter"