java.lang.Object
org.tquadrat.foundation.config.spi.CLIDefinition
Direct Known Subclasses:
CLIArgumentDefinition, CLIOptionDefinition

@ClassVersion(sourceVersion="$Id: CLIDefinition.java 1120 2024-03-16 09:48:00Z tquadrat $") @API(status=STABLE, since="0.0.1") public abstract class CLIDefinition extends Object
Base class for the run-time copies of the @Option or @Argument annotation. By definition, unnamed options are arguments, and named options are real command line options.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Thanks to:
Mark Sinke
Version:
$Id: CLIDefinition.java 1120 2024-03-16 09:48:00Z tquadrat $
Since:
0.0.1
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.config.spi.CLIDefinition"

UML Diagram for "org.tquadrat.foundation.config.spi.CLIDefinition"

UML Diagram for "org.tquadrat.foundation.config.spi.CLIDefinition"
  • Field Details

  • Constructor Details

    • CLIDefinition

      protected CLIDefinition(String property, boolean isArgument, String usage, String usageKey, String metaVar, boolean required, CmdLineValueHandler<?> handler, boolean multiValued, String format)
      Creates a new CLIDefinition instance.
      Parameters:
      property - The name of the property.
      isArgument - true for an argument, false for an option.
      usage - The usage text.
      usageKey - The resource bundle key for the usage text.
      metaVar - The meta variable name.
      required - true if the argument or option is mandatory.
      handler - The handler for the option or argument value.
      multiValued - true if the option or argument allows more than one value.
      format - The optional format.
  • Method Details

    • format

      public final Optional<String> format()
      Returns the optional format.
      Returns:
      An instance of Optional that holds the format.
      See Also:
    • getSortKey

      public abstract String getSortKey()
      Returns the sort key for the option or argument.
      Returns:
      The sort key.
    • handler

      public final CmdLineValueHandler<?> handler()
      Returns the handler.
      Returns:
      The handler
    • isArgument

      public final boolean isArgument()
      Returns a flag that indicates whether this is the definition for an argument or an option.
      Returns:
      true if this instance of OptionDef is defined by an @Argument annotation, false if it is defined by an @Option annotation.
    • isMultiValued

      public final boolean isMultiValued()
      Returns a flag that indicates whether this option or argument is multivalued.
      Returns:
      true if multivalued, false otherwise.
    • metaVar

      public final String metaVar()
      The name of the meta variable.
      Returns:
      The meta variable.
    • processParameters

      public final int processParameters(Parameters params) throws CmdLineException
      Processes the given parameter(s).
      Parameters:
      params - A reference to the command line arguments as for this option or argument definition. This method can use this object to access the values if necessary. The object is valid only during the method call.
      Returns:
      The number of command line arguments consumed by this method. For example, it will return 0 if option defined by this instance does not take any parameters.
      Throws:
      CmdLineException - Parsing the parameter(s) failed.
    • propertyName

      public final String propertyName()
      Returns the property name for this CLI element.
      Returns:
      The property name.
    • required

      public final boolean required()
      Returns a flag indicating if the option or argument is mandatory.
      Returns:
      true if the argument or option is required, false otherwise.
      See Also:
    • toString

      public abstract String toString()

      Overrides:
      toString in class Object
    • usage

      public final Optional<String> usage()
      Returns the usage text.
      Returns:
      An instance of Optional that holds the usage text.
    • usageKey

      public final Optional<String> usageKey()
      Returns the resource key for the usage text.
      Returns:
      An instance of Optional that holds the key for the usage text.
    • validateOptionName

      public static final boolean validateOptionName(String name) throws IllegalArgumentException
      Checks whether the given name for a command line option is valid.
      Parameters:
      name - The intended name for the command line option.
      Returns:
      true if the given name is valid, false otherwise.
      Throws:
      IllegalArgumentException - The given name is invalid.