Class CLIOptionDefinition

java.lang.Object
org.tquadrat.foundation.config.spi.CLIDefinition
org.tquadrat.foundation.config.spi.CLIOptionDefinition

@ClassVersion(sourceVersion="$Id: CLIOptionDefinition.java 1120 2024-03-16 09:48:00Z tquadrat $") @API(status=STABLE, since="0.0.1") public class CLIOptionDefinition extends CLIDefinition
Run-time copy of the Option annotation. By definition, named options are real options (and instances of this class). Unnamed options are arguments and actually another subclass of CLIDefinition.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Thanks to:
Mark Sinke
Version:
$Id: CLIOptionDefinition.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.CLIOptionDefinition"

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

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

  • Constructor Details

    • CLIOptionDefinition

      public CLIOptionDefinition(String property, List<String> names, String usage, String usageKey, String metaVar, boolean required, CmdLineValueHandler<?> handler, boolean multiValued, String format)
      Creates a new CLIOptionDefinition instance.
      Parameters:
      property - The name of the property.
      names - The names for the option.
      usage - The usage text.
      usageKey - The resource bundle key for the usage text.
      metaVar - The meta variable name; can be null.
      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