Uses of Class
com.github.rvesse.airline.parser.AbstractParser
-
-
Uses of AbstractParser in com.github.rvesse.airline.examples.userguide.parser.options
Subclasses of AbstractParser in com.github.rvesse.airline.examples.userguide.parser.options Modifier and Type Class Description classColonSeparatedOptionParser<T>An option parser where the name and value are colon separated i.e.classJdbcStyleOptionParser<T>Option parser that parses options given in JDBC connection URL style e.g. -
Uses of AbstractParser in com.github.rvesse.airline.parser
Subclasses of AbstractParser in com.github.rvesse.airline.parser Modifier and Type Class Description classAbstractCommandParser<T>Abstract implementation of a parser for commands that can cope with both CLI and Single Command parsing -
Uses of AbstractParser in com.github.rvesse.airline.parser.aliases
Subclasses of AbstractParser in com.github.rvesse.airline.parser.aliases Modifier and Type Class Description classAliasResolver<T>Resolves aliases -
Uses of AbstractParser in com.github.rvesse.airline.parser.command
Subclasses of AbstractParser in com.github.rvesse.airline.parser.command Modifier and Type Class Description classCliParser<T>classSingleCommandParser<T> -
Uses of AbstractParser in com.github.rvesse.airline.parser.options
Subclasses of AbstractParser in com.github.rvesse.airline.parser.options Modifier and Type Class Description classAbstractNameValueOptionParser<T>Abstract option parser for options that are specified in--name=valuestyle while the separator character (in this example=) can be configured as desired.classAbstractOptionParser<T>Abstract option parser that provides some useful helper methods to derived classesclassClassicGetOptParser<T>An 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.classGreedyClassicGetOptParser<T>Greedy variant of theClassicGetOptParserthat allows consuming values that could otherwise be treated as options in their own right.classGreedyMaybeListValueOptionParser<T>A variation on theMaybeListValueOptionParserthat is greedyclassListValueOptionParser<T>An options parser that requires the values to be a non-whitespace separated listclassLongGetOptParser<T>An options parser that supports the GNU Get Opt long style i.e.classMaybeListValueOptionParser<T>An options parser that expects the name and value(s) to be white space separated e.g.classMaybePairValueOptionParser<T>An options parser that expects the name and values to be white space separated e.g.classStandardOptionParser<T>An options parser that expects the name and value(s) to be white space separated e.g. -
Uses of AbstractParser in com.github.rvesse.airline.parser.suggester
Subclasses of AbstractParser in com.github.rvesse.airline.parser.suggester Modifier and Type Class Description classSuggestionParser<T>
-