Uses of Class
io.vertx.rxjava.core.cli.CLI
-
Packages that use CLI Package Description io.vertx.rxjava.core.cli io.vertx.rxjava.ext.shell.command -
-
Uses of CLI in io.vertx.rxjava.core.cli
Fields in io.vertx.rxjava.core.cli with type parameters of type CLI Modifier and Type Field Description static TypeArg<CLI>
CLI. __TYPE_ARG
Methods in io.vertx.rxjava.core.cli that return CLI Modifier and Type Method Description CLI
CLI. addArgument(Argument arg)
Adds an argument.CLI
CLI. addArguments(List<Argument> args)
Adds a set of arguments.CLI
CLI. addOption(Option option)
Adds an option.CLI
CLI. addOptions(List<Option> options)
Adds a set of options.CLI
CommandLine. cli()
static CLI
CLI. create(String name)
Creates an instance ofCLI
using the default implementation.static CLI
CLI. newInstance(CLI arg)
CLI
CLI. removeArgument(int index)
Removes an argument identified by its index.CLI
CLI. removeOption(String name)
Removes an option identified by its name.CLI
CLI. setArguments(List<Argument> args)
Sets the list of arguments.CLI
CLI. setDescription(String desc)
CLI
CLI. setHidden(boolean hidden)
Sets whether or not the current instance ofCLI
must be hidden.CLI
CLI. setName(String name)
Sets the name of the CLI.CLI
CLI. setOptions(List<Option> options)
Sets the list of arguments.CLI
CLI. setPriority(int priority)
Sets the priority of the CLI.CLI
CLI. setSummary(String summary)
Sets the summary of the CLI.Methods in io.vertx.rxjava.core.cli with parameters of type CLI Modifier and Type Method Description static CommandLine
CommandLine. create(CLI cli)
Creates a command line object from theCLI
. -
Uses of CLI in io.vertx.rxjava.ext.shell.command
Methods in io.vertx.rxjava.ext.shell.command that return CLI Modifier and Type Method Description CLI
Command. cli()
Methods in io.vertx.rxjava.ext.shell.command with parameters of type CLI Modifier and Type Method Description static CommandBuilder
CommandBuilder. command(CLI cli)
Create a new commmand with itsCLI
descriptor.
-