Uses of Interface
io.vertx.ext.shell.cli.CliToken
-
Packages that use CliToken Package Description io.vertx.ext.shell io.vertx.ext.shell.cli io.vertx.ext.shell.command -
-
Uses of CliToken in io.vertx.ext.shell
Method parameters in io.vertx.ext.shell with type arguments of type CliToken Modifier and Type Method Description Job
Shell. createJob(List<CliToken> line)
Create a job, the created job should then be executed with theJob.run()
method. -
Uses of CliToken in io.vertx.ext.shell.cli
Methods in io.vertx.ext.shell.cli that return CliToken Modifier and Type Method Description static CliToken
CliToken. createBlank(String blank)
Create a new blank token.static CliToken
CliToken. createText(String text)
Create a text token.Methods in io.vertx.ext.shell.cli that return types with arguments of type CliToken Modifier and Type Method Description List<CliToken>
Completion. lineTokens()
static List<CliToken>
CliToken. tokenize(String s)
Tokenize the string argument and return a list of tokens. -
Uses of CliToken in io.vertx.ext.shell.command
Methods in io.vertx.ext.shell.command that return types with arguments of type CliToken Modifier and Type Method Description List<CliToken>
CommandProcess. argsTokens()
Method parameters in io.vertx.ext.shell.command with type arguments of type CliToken Modifier and Type Method Description Process
Command. createProcess(List<CliToken> args)
Create a new process with the passed arguments.
-