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<V>
          Specification of an option that accepts an optional argument.
(package private)  class RequiredArgumentOptionSpec<V>
          Specification of an option that accepts a required argument.
 

Methods in joptsimple that return ArgumentAcceptingOptionSpec
 ArgumentAcceptingOptionSpec<V> ArgumentAcceptingOptionSpec.describedAs(java.lang.String description)
          Specifies a description for the argument of the option that this spec represents.
<T> ArgumentAcceptingOptionSpec<T>
ArgumentAcceptingOptionSpec.ofType(java.lang.Class<T> argumentType)
          Specifies a type to which arguments of this spec's option are to be converted.
 ArgumentAcceptingOptionSpec<java.lang.String> OptionSpecBuilder.withOptionalArg()
          Informs an option parser that this builder's option accepts an optional argument.
 ArgumentAcceptingOptionSpec<java.lang.String> OptionSpecBuilder.withRequiredArg()
          Informs an option parser that this builder's option requires an argument.
<T> ArgumentAcceptingOptionSpec<T>
ArgumentAcceptingOptionSpec.withValuesConvertedBy(ValueConverter<T> aConverter)
          Specifies a converter to use to translate arguments of this spec's option into Java objects.
 ArgumentAcceptingOptionSpec<V> 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 HelpFormatter.typeIndicator(ArgumentAcceptingOptionSpec<?> spec)
           
private  void HelpFormatter.visit(ArgumentAcceptingOptionSpec<?> spec, char begin, char end)