Uses of Class
joptsimple.ArgumentAcceptingOptionSpec

Packages that use ArgumentAcceptingOptionSpec
joptsimple   
 

Uses of ArgumentAcceptingOptionSpec in joptsimple
 

Subclasses of ArgumentAcceptingOptionSpec in joptsimple
(package private)  class AlternativeLongOptionSpec
          Represents the "-W" form of long option specification.
(package private)  class OptionalArgumentOptionSpec
          Specification of an option that accepts an optional argument.
(package private)  class RequiredArgumentOptionSpec
          Specification of an option that accepts a required argument.
 

Methods in joptsimple that return ArgumentAcceptingOptionSpec
 ArgumentAcceptingOptionSpec ArgumentAcceptingOptionSpec.describedAs(java.lang.String description)
          Specifies a description for the argument of the option that this spec represents.
 ArgumentAcceptingOptionSpec ArgumentAcceptingOptionSpec.ofType(java.lang.Class argumentType)
          Specifies a type to which arguments of this spec's option are to be converted.
 ArgumentAcceptingOptionSpec OptionSpecBuilder.withOptionalArg()
          Informs an option parser that this builder's option accepts an optional argument.
 ArgumentAcceptingOptionSpec OptionSpecBuilder.withRequiredArg()
          Informs an option parser that this builder's option requires an argument.
 ArgumentAcceptingOptionSpec ArgumentAcceptingOptionSpec.withValuesSeparatedBy(char separator)
          Specifies a value separator for the argument of the option that this spec represents.
 

Methods in joptsimple with parameters of type ArgumentAcceptingOptionSpec
private static java.lang.String OptionParserHelpFormatter.nameOfArgumentType(ArgumentAcceptingOptionSpec spec)
           
private  void OptionParserHelpFormatter.visit(ArgumentAcceptingOptionSpec spec, char begin, char end)