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