Module org.tquadrat.foundation.util
Class YearMonthStringConverter
java.lang.Object
org.tquadrat.foundation.util.stringconverter.TimeDateStringConverter<YearMonth>
org.tquadrat.foundation.util.stringconverter.YearMonthStringConverter
- All Implemented Interfaces:
Serializable,StringConverter<YearMonth>
@ClassVersion(sourceVersion="$Id: YearMonthStringConverter.java 1130 2024-05-05 16:16:09Z tquadrat $")
@API(status=STABLE,
since="0.0.6")
public class YearMonthStringConverter
extends TimeDateStringConverter<YearMonth>
The implementation of
TimeDateStringConverter
for java.time.YearMonth.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: YearMonthStringConverter.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.YearMonthStringConverter"
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final YearMonthStringConverterAn 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 newYearMonthStringConverterinstance.YearMonthStringConverter(DateTimeFormatter formatter) Creates a newYearMonthStringConverterinstance. -
Method Summary
Modifier and TypeMethodDescriptionprotected final YearMonthparseDateTime(CharSequence source, Optional<DateTimeFormatter> formatter) Parses the given String to an instance ofTemporal.static final YearMonthStringConverterprovider()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
-
YearMonthStringConverter
public YearMonthStringConverter()Creates a newYearMonthStringConverterinstance. -
YearMonthStringConverter
Creates a newYearMonthStringConverterinstance.- Note:
-
- The formatter may not drop neither year nor month, otherwise
fromString()may fail. This means that the formatter is only allowed to re-order the temporal fields.
- The formatter may not drop neither year nor month, otherwise
- Parameters:
formatter- The formatter for the temporal accessor.
-
-
Method Details
-
parseDateTime
protected final YearMonth 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<YearMonth>- 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.
-
