Uses of Interface
org.jline.shell.Command
Packages that use Command
Package
Description
JLine Builtins provides a collection of utility classes and implementations for common terminal
functionality.
Clean shell API for building interactive command-line applications with JLine.
Default implementations of the shell API interfaces.
-
Uses of Command in org.jline.builtins
Methods in org.jline.builtins that return types with arguments of type Command -
Uses of Command in org.jline.console.impl
Methods in org.jline.console.impl that return types with arguments of type Command -
Uses of Command in org.jline.shell
Methods in org.jline.shell that return CommandModifier and TypeMethodDescriptiondefault CommandFinds a command by name or alias.default CommandCommandDispatcher.findCommand(String name) Finds a command by name or alias across all registered groups.Methods in org.jline.shell that return types with arguments of type CommandModifier and TypeMethodDescriptionCommandGroup.commands()Returns all commands in this group.Command.subcommands()Returns the subcommands of this command. -
Uses of Command in org.jline.shell.impl
Classes in org.jline.shell.impl that implement CommandModifier and TypeClassDescriptionclassBase implementation ofCommandthat stores name and aliases.Methods in org.jline.shell.impl that return CommandMethods in org.jline.shell.impl that return types with arguments of type CommandModifier and TypeMethodDescriptionScriptCommands.commands()SimpleCommandGroup.commands()VariableCommands.commands()Constructors in org.jline.shell.impl with parameters of type CommandModifierConstructorDescriptionSimpleCommandGroup(String name, Command... commands) Creates a new command group with the given name and commands.Constructor parameters in org.jline.shell.impl with type arguments of type CommandModifierConstructorDescriptionSimpleCommandGroup(String name, Collection<Command> commands) Creates a new command group with the given name and commands.