Class DocumentValueHandler
java.lang.Object
org.tquadrat.foundation.config.cli.CmdLineValueHandler<Document>
org.tquadrat.foundation.config.cli.DocumentValueHandler
@ClassVersion(sourceVersion="$Id: DocumentValueHandler.java 1061 2023-09-25 16:32:43Z tquadrat $")
@API(status=INTERNAL,
since="0.0.1")
public final class DocumentValueHandler
extends CmdLineValueHandler<Document>
An implementation of
The
CmdLineValueHandler
for
Document
values.The
Document
will be identified by the name of the respective
File
object that of course has to exist and needs to be accessible.- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: DocumentValueHandler.java 1061 2023-09-25 16:32:43Z tquadrat $
- Since:
- 0.0.1
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.cli.DocumentValueHandler"
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The error message for a failed read attempt for the XML file: "Reading/parsing of XML file \'%1$s\' failed".static final int
The resource bundle key for the message about a failed read attempt for the XML file.Fields inherited from class org.tquadrat.foundation.config.cli.CmdLineValueHandler
DEFAULT_PROPERTY_NAME, MSG_InvalidParameter, MSGKEY_InvalidParameter
-
Constructor Summary
ConstructorsConstructorDescriptionDocumentValueHandler
(BiConsumer<String, Document> valueSetter) Creates a newDocumentValueHandler
instance. -
Method Summary
Modifier and TypeMethodDescriptionprotected final Collection
<Document> translate
(Parameters params) Translates the command line values that can be referenced via theparams
argument to the target type.Methods inherited from class org.tquadrat.foundation.config.cli.CmdLineValueHandler
getCLIDefinition, getPropertyName, getValueSetter, parseCmdLine, setContext
-
Field Details
-
MSG_ReadFailed
The error message for a failed read attempt for the XML file: "Reading/parsing of XML file \'%1$s\' failed".- See Also:
-
MSGKEY_ReadFailed
The resource bundle key for the message about a failed read attempt for the XML file.- See Also:
-
-
Constructor Details
-
DocumentValueHandler
Creates a newDocumentValueHandler
instance.- Parameters:
valueSetter
- The function that places the translated value to the property.
-
-
Method Details
-
translate
Translates the command line values that can be referenced via theparams
argument to the target type.- Specified by:
translate
in classCmdLineValueHandler<Document>
- Parameters:
params
- The command line values to translate.- Returns:
- A collection with the result; each entry in the collection corresponds to one value from the command line.
- Throws:
CmdLineException
- The given parameters cannot be parsed to the target type.
-