Class ImageValueHandler
java.lang.Object
org.tquadrat.foundation.config.cli.CmdLineValueHandler<BufferedImage>
org.tquadrat.foundation.config.cli.ImageValueHandler
@ClassVersion(sourceVersion="$Id: ImageValueHandler.java 1061 2023-09-25 16:32:43Z tquadrat $")
@API(status=INTERNAL,
since="0.0.1")
public final class ImageValueHandler
extends CmdLineValueHandler<BufferedImage>
An implementation of
CmdLineValueHandler
for
BufferedImage
values.
The image 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: ImageValueHandler.java 1061 2023-09-25 16:32:43Z tquadrat $
- Since:
- 0.0.1
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.config.cli.ImageValueHandler"
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
The error message for a failed read attempt for the image: "Reading of the image file \'%1$s\' failed".static final int
The resource bundle key for the message about a failed read attempt for the image.Fields inherited from class org.tquadrat.foundation.config.cli.CmdLineValueHandler
DEFAULT_PROPERTY_NAME, MSG_InvalidParameter, MSGKEY_InvalidParameter
-
Constructor Summary
ConstructorsConstructorDescriptionImageValueHandler
(BiConsumer<String, BufferedImage> valueSetter) Creates a newImageValueHandler
instance.ImageValueHandler
(CLIDefinition context, BiConsumer<String, BufferedImage> valueSetter) Creates a newImageValueHandler
instance. -
Method Summary
Modifier and TypeMethodDescriptionprotected final Collection
<BufferedImage> 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 image: "Reading of the image file \'%1$s\' failed".- See Also:
-
MSGKEY_ReadFailed
The resource bundle key for the message about a failed read attempt for the image.- See Also:
-
-
Constructor Details
-
ImageValueHandler
Creates a newImageValueHandler
instance.- Parameters:
context
- The CLI definition that provides the context for this value handler.valueSetter
- The function that places the translated value to the property.
-
ImageValueHandler
Creates a newImageValueHandler
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<BufferedImage>
- 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.
-