ParserBuilder<C> |
ParserBuilder.withAliasesChaining() |
Sets that aliases may be defined in terms of other aliases
|
ParserBuilder<C> |
ParserBuilder.withAliasesOverridingBuiltIns() |
Sets that aliases should override built-in commands
|
ParserBuilder<C> |
ParserBuilder.withAliasForceBuiltInPrefix(char prefix) |
Sets a prefix character used in alias definitions to force use of a built-in as opposed to a chained alias
|
ParserBuilder<C> |
ParserBuilder.withArgumentsSeparator(java.lang.String separator) |
Sets the arguments separator, this is a token used to indicate the point at which no further options will be seen
and all further tokens should be treated as arguments.
|
ParserBuilder<C> |
ParserBuilder.withCommandAbbreviation() |
Sets that command abbreviation is enabled
|
ParserBuilder<C> |
ParserBuilder.withCommandFactory(CommandFactory<C> commandFactory) |
Specifies the command factory to use
|
ParserBuilder<C> |
ParserBuilder.withCompositionAnnotations(java.lang.String... annotationClassNames) |
|
ParserBuilder<C> |
ParserBuilder.withCompositionAnnotations(java.util.Collection<java.lang.String> annotationClassNames) |
Specifies the class names of annotations that Airline should consider to mark a field for further inspection and
injection to enable composition.
|
ParserBuilder<C> |
ParserBuilder.withDefaultCommandFactory() |
Specifies that the default command factory should be used
|
ParserBuilder<C> |
ParserBuilder.withDefaultCompositionAnnotations() |
Configures the parser to use the default set of composition annotations.
|
ParserBuilder<C> |
ParserBuilder.withDefaultErrorHandler() |
Sets that the default error handler should be used
|
ParserBuilder<C> |
ParserBuilder.withDefaultNumericTypeConverter() |
Indicates that default numeric type conversion should be used
|
ParserBuilder<C> |
ParserBuilder.withDefaultOptionParsers() |
Configures the CLI to use the default set of option parsers in addition to any previously registered
|
ParserBuilder<C> |
ParserBuilder.withDefaultTypeConverter() |
Sets that the default type converter should be used
|
ParserBuilder<C> |
ParserBuilder.withErrorHandler(ParserErrorHandler errorHandler) |
Sets the error handler to use
|
ParserBuilder<C> |
ParserBuilder.withFlagNegationPrefix(java.lang.String prefix) |
Sets the flag negation prefix, this is used to determine whether to set a flag option (a zero arity option) to
false rather than the usual behaviour of setting it to true .
|
ParserBuilder<C> |
ParserBuilder.withNumericTypeConverter(NumericTypeConverter converter) |
Indicates the desired numeric type converter to use, this is passed as an argument to the given type converter
|
ParserBuilder<C> |
ParserBuilder.withOnlyDefaultOptionParsers() |
Configures the CLI to use only the default set of option parsers
|
ParserBuilder<C> |
ParserBuilder.withOptionAbbreviation() |
Sets that option abbreviation is enabled
|
ParserBuilder<C> |
ParserBuilder.withOptionParser(OptionParser<C> optionParser) |
Configures the CLI to use the given option parser
|
ParserBuilder<C> |
ParserBuilder.withOptionParsers(OptionParser<C>... optionParsers) |
Configures the CLI to use the given option parsers
|
ParserBuilder<C> |
CliBuilder.withParser() |
|
ParserBuilder<C> |
ParserBuilder.withTypeConverter(TypeConverter converter) |
Sets the type converter for the parser
|
ParserBuilder<C> |
ParserBuilder.withUserAliases(java.lang.String programName) |
Deprecated.
|
ParserBuilder<C> |
ParserBuilder.withUserAliases(java.lang.String programName,
java.lang.String searchLocation) |
Deprecated.
|
ParserBuilder<C> |
ParserBuilder.withUserAliases(java.lang.String filename,
java.lang.String prefix,
java.lang.String... searchLocations) |
Deprecated.
|
ParserBuilder<C> |
ParserBuilder.withUserAliases(java.lang.String filename,
java.lang.String prefix,
java.util.List<ResourceLocator> locators,
java.lang.String... searchLocations) |
Deprecated.
|