Module org.tquadrat.foundation.util
Class LocalDateStringConverter
java.lang.Object
org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter<LocalDate>
org.tquadrat.foundation.util.stringconverter.LocalDateStringConverter
- All Implemented Interfaces:
Serializable,StringConverter<LocalDate>
@ClassVersion(sourceVersion="$Id: LocalDateStringConverter.java 1130 2024-05-05 16:16:09Z tquadrat $")
@API(status=STABLE,
since="0.0.6")
public class LocalDateStringConverter
extends TimeDateStringConverter<LocalDate>
The implementation of
TimeDateStringConverter
for java.time.LocalDate.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: LocalDateStringConverter.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.LocalDateStringConverter"
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final LocalDateStringConverterAn instance of this class.Fields 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 newLocalDateStringConverterinstance.LocalDateStringConverter(DateTimeFormatter formatter) Creates a newLocalDateStringConverterinstance. -
Method Summary
Modifier and TypeMethodDescriptionprotected final LocalDateparseDateTime(CharSequence source, Optional<DateTimeFormatter> formatter) Parses the given String to an instance ofTemporal.static final LocalDateStringConverterprovider()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
-
LocalDateStringConverter
public LocalDateStringConverter()Creates a newLocalDateStringConverterinstance. -
LocalDateStringConverter
Creates a newLocalDateStringConverterinstance.- Note:
-
- The formatter may not drop any part of the local date, 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 local date, otherwise
- Parameters:
formatter- The formatter for the temporal accessor.
-
-
Method Details
-
parseDateTime
protected final LocalDate 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<LocalDate>- 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.
-
