Uses of Class
org.bukkit.command.Command
Packages that use Command
Package
Description
Classes relating to handling specialized non-chat player input.
Commands for emulating the Minecraft commands and other necessary ones for
use by a Bukkit implementation.
Classes used to manipulate the default command and topic assistance system.
Classes for handling
plugins
written in
java.-
Uses of Command in org.bukkit.command
Subclasses of Command in org.bukkit.commandModifier and TypeClassDescriptionclass
class
Represents a command that delegates to one or more other commandsfinal class
Represents aCommand
belonging to a pluginFields in org.bukkit.command with type parameters of type CommandMethods in org.bukkit.command that return CommandModifier and TypeMethodDescriptionCommandMap.getCommand
(String name) Gets the command registered to the specified nameSimpleCommandMap.getCommand
(String name) Command[]
MultipleCommandAlias.getCommands()
Gets the commands associated with the multi-command alias.Command.setAliases
(List<String> aliases) Sets the list of aliases to request on registration for this command.Command.setDescription
(String description) Sets a brief description of this command.Command.setPermissionMessage
(String permissionMessage) Sets the message sent when a permission check failsSets the example usage of this commandMethods in org.bukkit.command that return types with arguments of type CommandMethods in org.bukkit.command with parameters of type CommandModifier and TypeMethodDescriptionboolean
CommandExecutor.onCommand
(CommandSender sender, Command command, String label, String[] args) Executes the given command, returning its success.TabCompleter.onTabComplete
(CommandSender sender, Command command, String label, String[] args) Requests a list of possible completions for a command argument.boolean
Registers a command.boolean
Registers a command.boolean
Registers a command.boolean
Registers a command.Method parameters in org.bukkit.command with type arguments of type CommandModifier and TypeMethodDescriptionvoid
CommandMap.registerAll
(String fallbackPrefix, List<Command> commands) Registers all the commands belonging to a certain plugin.void
SimpleCommandMap.registerAll
(String fallbackPrefix, List<Command> commands) Registers all the commands belonging to a certain plugin.Constructors in org.bukkit.command with parameters of type Command -
Uses of Command in org.bukkit.command.defaults
Subclasses of Command in org.bukkit.command.defaultsModifier and TypeClassDescriptionclass
class
class
class
class
class
-
Uses of Command in org.bukkit.help
Classes in org.bukkit.help with type parameters of type CommandModifier and TypeInterfaceDescriptioninterface
HelpTopicFactory<TCommand extends Command>
A HelpTopicFactory is used to create customHelpTopic
objects from commands that inherit from a common base class or have executors that inherit from a common base class.Fields in org.bukkit.help declared as CommandConstructors in org.bukkit.help with parameters of type Command -
Uses of Command in org.bukkit.plugin.java
Methods in org.bukkit.plugin.java with parameters of type CommandModifier and TypeMethodDescriptionboolean
JavaPlugin.onCommand
(CommandSender sender, Command command, String label, String[] args) Executes the given command, returning its success.JavaPlugin.onTabComplete
(CommandSender sender, Command command, String alias, String[] args) Requests a list of possible completions for a command argument.