Uses of Interface
com.github.rvesse.airline.parser.options.OptionParser
Packages that use OptionParser
Package
Description
-
Uses of OptionParser in com.github.rvesse.airline.builder
Fields in com.github.rvesse.airline.builder with type parameters of type OptionParserModifier and TypeFieldDescriptionprotected final List<OptionParser<C>> ParserBuilder.optionParsersMethods in com.github.rvesse.airline.builder with parameters of type OptionParserModifier and TypeMethodDescriptionParserBuilder.withOptionParser(OptionParser<C> optionParser) Configures the CLI to use the given option parserParserBuilder.withOptionParsers(OptionParser<C>... optionParsers) Configures the CLI to use the given option parsers -
Uses of OptionParser in com.github.rvesse.airline.examples.userguide.parser.options
Classes in com.github.rvesse.airline.examples.userguide.parser.options that implement OptionParserModifier and TypeClassDescriptionclassAn option parser where the name and value are colon separated i.e.classOption parser that parses options given in JDBC connection URL style e.g. -
Uses of OptionParser in com.github.rvesse.airline.model
Fields in com.github.rvesse.airline.model with type parameters of type OptionParserModifier and TypeFieldDescriptionprivate final List<OptionParser<T>> ParserMetadata.optionParsersMethods in com.github.rvesse.airline.model that return types with arguments of type OptionParserModifier and TypeMethodDescriptionParserMetadata.getOptionParsers()Gets the option parsers to use -
Uses of OptionParser in com.github.rvesse.airline.parser.options
Classes in com.github.rvesse.airline.parser.options that implement OptionParserModifier and TypeClassDescriptionclassAbstract option parser for options that are specified in--name=valuestyle while the separator character (in this example=) can be configured as desired.classAbstract option parser that provides some useful helper methods to derived classesclassAn options parsing that parses options given in classic get-opt style where multiple options may be concatenated together, potentially including a value for the last option in the concatenation.classGreedy variant of theClassicGetOptParserthat allows consuming values that could otherwise be treated as options in their own right.classA variation on theMaybeListValueOptionParserthat is greedyclassAn options parser that requires the values to be a non-whitespace separated listclassAn options parser that supports the GNU Get Opt long style i.e.classAn options parser that expects the name and value(s) to be white space separated e.g.classAn options parser that expects the name and values to be white space separated e.g.classAn options parser that expects the name and value(s) to be white space separated e.g.