Module org.tquadrat.foundation.util
Class InstantStringConverter
java.lang.Object
org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter<Instant>
org.tquadrat.foundation.util.stringconverter.InstantStringConverter
- All Implemented Interfaces:
Serializable,StringConverter<Instant>
@ClassVersion(sourceVersion="$Id: InstantStringConverter.java 1130 2024-05-05 16:16:09Z tquadrat $")
@API(status=STABLE,
since="0.0.6")
public class InstantStringConverter
extends TimeDateStringConverter<Instant>
The implementation of
TimeDateStringConverter
for
Instant.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: InstantStringConverter.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.InstantStringConverter"
-
Field Summary
FieldsFields inherited from class org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter
MSG_InvalidDateTimeFormatFields inherited from interface org.tquadrat.foundation.lang.StringConverter
METHOD_NAME_GetSubjectClass, METHOD_NAME_Provider -
Constructor Summary
ConstructorsConstructorDescriptionCreates a newInstantStringConverterinstance.InstantStringConverter(DateTimeFormatter formatter) Creates a newInstantStringConverterinstance that uses the given formatter for the conversion back and forth. -
Method Summary
Modifier and TypeMethodDescriptionprotected final InstantparseDateTime(CharSequence source, Optional<DateTimeFormatter> formatter) Parses the given String to an instance ofTemporal.static final InstantStringConverterprovider()This method is used by theServiceLoaderto obtain the instance for thisStringConverterimplementation.Methods inherited from class org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter
fromString, getSubjectClass, toString
-
Field Details
-
INSTANCE
An instance of this class.
-
-
Constructor Details
-
InstantStringConverter
public InstantStringConverter()Creates a newInstantStringConverterinstance. -
InstantStringConverter
Creates a newInstantStringConverterinstance that uses the given formatter for the conversion back and forth.- Note:
-
- The formatter may not drop any part of the instant, 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 instant, otherwise
- Parameters:
formatter- The formatter for the temporal accessor.
-
-
Method Details
-
parseDateTime
protected final Instant parseDateTime(CharSequence source, Optional<DateTimeFormatter> formatter) throws DateTimeParseException Parses the given String to an instance ofTemporal. The caller ensures thatsourceis notnull, not the empty String and does not contain only whitespace.- Specified by:
parseDateTimein classTimeDateStringConverter<Instant>- 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 theServiceLoaderto obtain the instance for thisStringConverterimplementation.- Returns:
- The instance for this
StringConverterimplementation.
-
