Class PeriodStringConverter

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

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

An implementation of StringConverter for Period values.

While the method toString(Period) simply uses Period.toString(), the method fromString(CharSequence) uses Period.parse(CharSequence) to create the Period instance for the given value. The formats accepted are based on the ISO-8601 period formats PnYnMnD and PnW.

The string starts with an optional sign, denoted by the ASCII negative ('-') or positive ('+') symbol. If negative, the whole period is negated.

The ASCII letter "P" is next in upper or lower case.

There are then four sections, each consisting of a number and a suffix. At least one of the four sections must be present.

The sections have suffixes in ASCII of "Y", "M", "W" and "D" for years, months, weeks and days, accepted in upper or lower case.

The suffixes must occur in order. The number part of each section must consist of ASCII digits. The number may be prefixed by the ASCII negative or positive symbol. The number must parse to an int.

Notes:
  • The leading plus/minus sign, and negative values for other units are not originally part of the ISO-8601 standard.
  • In addition, ISO-8601 does not permit mixing between the PnYnMnD and PnW formats. Any week-based input is multiplied by 7 and treated as a number of days.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: PeriodStringConverter.java 1060 2023-09-24 19:21:40Z tquadrat $
Since:
0.0.7
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.util.stringconverter.PeriodStringConverter"

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

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