Uses of Class
org.bukkit.command.Command
-
Packages that use Command Package Description org.bukkit.command Classes relating to handling specialized non-chat player input.org.bukkit.command.defaults Commands for emulating the Minecraft commands and other necessary ones for use by a Bukkit implementation.org.bukkit.help Classes used to manipulate the default command and topic assistance system.org.bukkit.plugin.java Classes for handlingpluginswritten in java. -
-
Uses of Command in org.bukkit.command
Subclasses of Command in org.bukkit.command Modifier and Type Class Description classFormattedCommandAliasclassMultipleCommandAliasRepresents a command that delegates to one or more other commandsclassPluginCommandRepresents aCommandbelonging to a pluginFields in org.bukkit.command with type parameters of type Command Modifier and Type Field Description protected Map<String,Command>SimpleCommandMap. knownCommandsMethods in org.bukkit.command that return Command Modifier and Type Method Description @Nullable CommandCommandMap. getCommand(@NotNull String name)Gets the command registered to the specified name@Nullable CommandSimpleCommandMap. getCommand(@NotNull String name)@NotNull Command[]MultipleCommandAlias. getCommands()Gets the commands associated with the multi-command alias.@NotNull CommandCommand. setAliases(@NotNull List<String> aliases)Sets the list of aliases to request on registration for this command.@NotNull CommandCommand. setDescription(@NotNull String description)Sets a brief description of this command.@NotNull CommandCommand. setPermissionMessage(@Nullable String permissionMessage)Sets the message sent when a permission check fails@NotNull CommandCommand. setUsage(@NotNull String usage)Sets the example usage of this commandMethods in org.bukkit.command that return types with arguments of type Command Modifier and Type Method Description @NotNull Collection<Command>SimpleCommandMap. getCommands()static @NotNull List<Command>PluginCommandYamlParser. parse(@NotNull Plugin plugin)Methods in org.bukkit.command with parameters of type Command Modifier and Type Method Description booleanCommandExecutor. onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args)Executes the given command, returning its success.@Nullable List<String>TabCompleter. onTabComplete(@NotNull CommandSender sender, @NotNull Command command, @NotNull String alias, @NotNull String[] args)Requests a list of possible completions for a command argument.booleanCommandMap. register(@NotNull String label, @NotNull String fallbackPrefix, @NotNull Command command)Registers a command.booleanCommandMap. register(@NotNull String fallbackPrefix, @NotNull Command command)Registers a command.booleanSimpleCommandMap. register(@NotNull String label, @NotNull String fallbackPrefix, @NotNull Command command)Registers a command.booleanSimpleCommandMap. register(@NotNull String fallbackPrefix, @NotNull Command command)Registers a command.Method parameters in org.bukkit.command with type arguments of type Command Modifier and Type Method Description voidCommandMap. registerAll(@NotNull String fallbackPrefix, @NotNull List<Command> commands)Registers all the commands belonging to a certain plugin.voidSimpleCommandMap. registerAll(@NotNull String fallbackPrefix, @NotNull List<Command> commands)Registers all the commands belonging to a certain plugin.Constructors in org.bukkit.command with parameters of type Command Constructor Description MultipleCommandAlias(@NotNull String name, @NotNull Command[] commands) -
Uses of Command in org.bukkit.command.defaults
Subclasses of Command in org.bukkit.command.defaults Modifier and Type Class Description classBukkitCommandclassHelpCommandclassPluginsCommandclassReloadCommandclassTimingsCommandclassVersionCommand -
Uses of Command in org.bukkit.help
Classes in org.bukkit.help with type parameters of type Command Modifier and Type Interface Description interfaceHelpTopicFactory<TCommand extends Command>A HelpTopicFactory is used to create customHelpTopicobjects 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 Command Modifier and Type Field Description protected CommandGenericCommandHelpTopic. commandConstructors in org.bukkit.help with parameters of type Command Constructor Description GenericCommandHelpTopic(@NotNull Command command) -
Uses of Command in org.bukkit.plugin.java
Methods in org.bukkit.plugin.java with parameters of type Command Modifier and Type Method Description booleanJavaPlugin. onCommand(@NotNull CommandSender sender, @NotNull Command command, @NotNull String label, @NotNull String[] args)Executes the given command, returning its success.@Nullable List<String>JavaPlugin. onTabComplete(@NotNull CommandSender sender, @NotNull Command command, @NotNull String alias, @NotNull String[] args)Requests a list of possible completions for a command argument.
-