CLI |
CLI.addArgument(io.vertx.core.cli.Argument arg) |
Adds an argument.
|
CLI |
CLI.addArguments(List<io.vertx.core.cli.Argument> args) |
Adds a set of arguments.
|
CLI |
CLI.addOption(io.vertx.core.cli.Option option) |
Adds an option.
|
CLI |
CLI.addOptions(List<io.vertx.core.cli.Option> options) |
Adds a set of options.
|
CLI |
CommandLine.cli() |
|
static CLI |
CLI.create(String name) |
Creates an instance of CLI using the default implementation.
|
static CLI |
CLI.newInstance(io.vertx.core.cli.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<io.vertx.core.cli.Argument> args) |
Sets the list of arguments.
|
CLI |
CLI.setDescription(String desc) |
|
CLI |
CLI.setHidden(boolean hidden) |
Sets whether or not the current instance of CLI must be hidden.
|
CLI |
CLI.setName(String name) |
Sets the name of the CLI.
|
CLI |
CLI.setOptions(List<io.vertx.core.cli.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.
|