Class ZonedDateTimeValueHandler
java.lang.Object
org.tquadrat.foundation.config.cli.CmdLineValueHandler<ZonedDateTime>
org.tquadrat.foundation.config.cli.TimeValueHandler<ZonedDateTime>
org.tquadrat.foundation.config.cli.ZonedDateTimeValueHandler
@ClassVersion(sourceVersion="$Id: ZonedDateTimeValueHandler.java 896 2021-04-05 20:25:33Z tquadrat $")
@API(status=INTERNAL,
since="0.0.1")
public final class ZonedDateTimeValueHandler
extends TimeValueHandler<ZonedDateTime>
The implementation of
TimeValueHandler
for
ZonedDateTime
.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: ZonedDateTimeValueHandler.java 896 2021-04-05 20:25:33Z tquadrat $
- Since:
- 0.0.1
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.cli.ZonedDateTimeValueHandler"
-
Field Summary
Fields inherited from class org.tquadrat.foundation.config.cli.TimeValueHandler
MSG_InvalidDateTimeFormat, MSGKEY_InvalidDateTimeFormat, NOW
Fields inherited from class org.tquadrat.foundation.config.cli.CmdLineValueHandler
DEFAULT_PROPERTY_NAME, MSG_InvalidParameter, MSGKEY_InvalidParameter
-
Constructor Summary
ConstructorsConstructorDescriptionZonedDateTimeValueHandler
(BiConsumer<String, ZonedDateTime> valueSetter) Creates a newZonedDateTimeValueHandler
instance.ZonedDateTimeValueHandler
(CLIDefinition context, BiConsumer<String, ZonedDateTime> valueSetter) Creates a newZonedDateTimeValueHandler
instance. -
Method Summary
Modifier and TypeMethodDescriptionprotected final Optional
<TimeDateStringConverter<ZonedDateTime>> Creates a non-standard string converter that uses the provided format.protected final ZonedDateTime
getNow()
Get the current time.Methods inherited from class org.tquadrat.foundation.config.cli.TimeValueHandler
getFormatter, getStringConverter, translate
Methods inherited from class org.tquadrat.foundation.config.cli.CmdLineValueHandler
getCLIDefinition, getPropertyName, getValueSetter, parseCmdLine, setContext
-
Constructor Details
-
ZonedDateTimeValueHandler
public ZonedDateTimeValueHandler(CLIDefinition context, BiConsumer<String, ZonedDateTime> valueSetter) Creates a newZonedDateTimeValueHandler
instance.- Parameters:
context
- The CLI definition that provides the context for this value handler.valueSetter
- TheConsumer
that places the translated value to the property.
-
ZonedDateTimeValueHandler
Creates a newZonedDateTimeValueHandler
instance.- Parameters:
valueSetter
- TheConsumer
that places the translated value to the property.
-
-
Method Details
-
createCustomStringConverter
Creates a non-standard string converter that uses the provided format.- Specified by:
createCustomStringConverter
in classTimeValueHandler<ZonedDateTime>
- Returns:
- An instance o
Optional
that holds theStringConverter
.
-
getNow
Get the current time.- Specified by:
getNow
in classTimeValueHandler<ZonedDateTime>
- Returns:
- The current time.
-