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