Class BooleanStringConverter

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

@ClassVersion(sourceVersion="$Id: BooleanStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $") @API(status=STABLE, since="0.0.6") public class BooleanStringConverter extends Object implements StringConverter<Boolean>
An implementation of StringConverter for boolean and Boolean values.

The method fromString(CharSequence) will accept the String "true", irrespective of case, for the value true, and any other String for false (including the empty String!), while Object.toString() will only return "true" or "false" (or null if the input is null). This behaviour can be changed by providing different implementations for translate(CharSequence) and toString(Boolean).
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: BooleanStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $
Since:
0.0.6
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.util.stringconverter.BooleanStringConverter"

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

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