Annotation Interface Argument


@ClassVersion(sourceVersion="$Id: Argument.java 1061 2023-09-25 16:32:43Z tquadrat $") @Documented @Retention(CLASS) @Target(METHOD) @API(status=STABLE, since="0.0.1") public @interface Argument

This annotation is used in the context of a configuration bean specification to mark a property that receives the value of a command line argument. It will be placed to the getter for the property.

A command line argument will be identified by its relative position on the parameter list, after any command line options. Therefore it has an index, where an option has a name.

Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Thanks to:
Kohsuke Kawaguchi (kk@kohsuke.org), Mark Sinke
Version:
$Id: Argument.java 1061 2023-09-25 16:32:43Z tquadrat $
Since:
0.0.1
UML Diagram
UML Diagram for "org.tquadrat.foundation.config.Argument"

UML Diagram for "org.tquadrat.foundation.config.Argument"

UML Diagram for "org.tquadrat.foundation.config.Argument"
  • Element Details

    • format

      Some value handlers (like the DateValueHandler) use this field for additional validation information, like a format String. It is ignored by most others.

      Refer to the documentation of those value handlers for the exact contents specification.

      Returns:
      The extended format specification according to the option handler, or the empty String.
      Default:
      ""
    • handler

      Specifies the command line value handler that translates the command line argument value to the type of the target property and places that value to the property.

      The default value CmdLineValueHandler.class indicates that the effective CmdLineValueHandler implementation will be inferred from the type of the annotated property.

      If it is set to a class that extends CmdLineValueHandler, an instance of that class will be created (therefore it has to provide a constructor with the signature &lt;<i>Constructor</i>&gt;(CLIDefinition, BiConsumer)) that is used as the handler. This is convenient for defining a non-standard option parsing semantics.

      Example

      
        // this is a normal "-r" option
        @Option()
        boolean getFlag();
      
        // This causes that MyHandler is used instead of the default handler
        // provided for boolean
        @Option( handler = MyHandler.class )
        boolean getYesNo();
      Returns:
      The CmdLineValueHandler implementation.
      Default:
      org.tquadrat.foundation.config.cli.CmdLineValueHandler.class
    • index

      int index
      A command line argument is identified by its relative position on the command line, instead by a name. The first position has the index 0, the second is 1 and so on.
      Returns:
      The index for the argument.
    • metaVar

      A name for the argument that is used in messages.

      If left unspecified, that name is inferred from the name of the configuration property itself.

      Returns:
      A meta variable string.
      Default:
      ""
    • multiValued

      boolean multiValued
      A flag that indicates whether the argument is multivalued, for mappings to a Collection. As this will consume all remaining arguments from the command line, the annotated property has to be the last argument.
      Returns:
      true if the argument is multivalued, false otherwise.
      Default:
      false
    • required

      boolean required
      A flag that specifies whether this argument is mandatory. This implies that all previous arguments (those with lower indexes) are mandatory as well.
      Returns:
      true if the argument is mandatory, false otherwise.
      Default:
      false
    • usage

      A help text that will be displayed in the usage output if ConfigBeanSpec.getResourceBundle() returns no ResourceBundle instance or the call to getString() with the value of usageKey() on the retrieved resources throws a MissingResourceException.

      The default is the empty String.

      Returns:
      The usage help text.
      Default:
      ""
    • usageKey

      The resource bundle key for a help text that will be displayed in the usage output.

      If not specified, the value will be derived from the name of the property like this:

        USAGE_<PropertyName>

      The text will be retrieved from the ResourceBundle that is returned from ConfigBeanSpec.getResourceBundle(); if that is null the value of usage() is taken instead.

      This allows to localise the usage output.

      Returns:
      The resource bundle key for the usage text.
      See Also:
      Default:
      ""