Module org.tquadrat.foundation.util
Class ZonedDateTimeStringConverter
java.lang.Object
org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter<ZonedDateTime>
org.tquadrat.foundation.util.stringconverter.ZonedDateTimeStringConverter
- All Implemented Interfaces:
Serializable
,StringConverter<ZonedDateTime>
@ClassVersion(sourceVersion="$Id: ZonedDateTimeStringConverter.java 1130 2024-05-05 16:16:09Z tquadrat $")
@API(status=STABLE,
since="0.0.6")
public class ZonedDateTimeStringConverter
extends TimeDateStringConverter<ZonedDateTime>
The implementation of
TimeDateStringConverter
for java.time.ZonedDateTime
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: ZonedDateTimeStringConverter.java 1130 2024-05-05 16:16:09Z tquadrat $
- Since:
- 0.0.6
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.util.stringconverter.ZonedDateTimeStringConverter"
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ZonedDateTimeStringConverter
An instance of this class.Fields inherited from class org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter
MSG_InvalidDateTimeFormat
Fields inherited from interface org.tquadrat.foundation.lang.StringConverter
METHOD_NAME_GetSubjectClass, METHOD_NAME_Provider
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newZonedDateTimeStringConverter
instance that usesDateTimeFormatter.ISO_ZONED_DATE_TIME
to format/parse the date.ZonedDateTimeStringConverter
(DateTimeFormatter formatter) Creates a newZonedDateTimeStringConverter
instance. -
Method Summary
Modifier and TypeMethodDescriptionprotected final ZonedDateTime
parseDateTime
(CharSequence source, Optional<DateTimeFormatter> formatter) Parses the given String to an instance ofTemporal
.static final ZonedDateTimeStringConverter
provider()
This method is used by theServiceLoader
to obtain the instance for thisStringConverter
implementation.Methods inherited from class org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter
fromString, getSubjectClass, toString
-
Field Details
-
INSTANCE
An instance of this class.
-
-
Constructor Details
-
ZonedDateTimeStringConverter
public ZonedDateTimeStringConverter()Creates a newZonedDateTimeStringConverter
instance that usesDateTimeFormatter.ISO_ZONED_DATE_TIME
to format/parse the date. -
ZonedDateTimeStringConverter
Creates a newZonedDateTimeStringConverter
instance.- Note:
-
- The formatter may not drop any part of the zoned date time,
otherwise
fromString()
may fail. This means that the formatter is only allowed to re-order the temporal fields.
- The formatter may not drop any part of the zoned date time,
otherwise
- Parameters:
formatter
- The formatter for the temporal accessor.
-
-
Method Details
-
parseDateTime
protected final ZonedDateTime parseDateTime(CharSequence source, Optional<DateTimeFormatter> formatter) throws DateTimeParseException Parses the given String to an instance ofTemporal
. The caller ensures thatsource
is notnull
, not the empty String and does not contain only whitespace.- Specified by:
parseDateTime
in classTimeDateStringConverter<ZonedDateTime>
- Parameters:
source
- The String to parse.formatter
- The formatter for parsing the String- Returns:
- The time/date value.
- Throws:
DateTimeParseException
- The given value cannot be parsed to aTemporal
.
-
provider
This method is used by theServiceLoader
to obtain the instance for thisStringConverter
implementation.- Returns:
- The instance for this
StringConverter
implementation.
-