Class CommandResolver
- java.lang.Object
-
- io.vertx.mutiny.ext.shell.command.CommandResolver
-
- Direct Known Subclasses:
CommandRegistry
public class CommandResolver extends Object
A resolver for commands, so the shell can discover commands. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<CommandResolver>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description CommandResolver(io.vertx.ext.shell.command.CommandResolver delegate)
CommandResolver(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CommandResolver
baseCommands(Vertx vertx)
List<Command>
commands()
boolean
equals(Object o)
Command
getCommand(String name)
io.vertx.ext.shell.command.CommandResolver
getDelegate()
int
hashCode()
static CommandResolver
newInstance(io.vertx.ext.shell.command.CommandResolver arg)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<CommandResolver> __TYPE_ARG
-
-
Constructor Detail
-
CommandResolver
public CommandResolver(io.vertx.ext.shell.command.CommandResolver delegate)
-
CommandResolver
public CommandResolver(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.shell.command.CommandResolver getDelegate()
-
baseCommands
public static CommandResolver baseCommands(Vertx vertx)
- Parameters:
vertx
-- Returns:
- the base commands of Vert.x Shell.
-
getCommand
public Command getCommand(String name)
- Parameters:
name
- the command name- Returns:
- the commad or null
-
newInstance
public static CommandResolver newInstance(io.vertx.ext.shell.command.CommandResolver arg)
-
-