Uses of Interface
net.md_5.bungee.api.CommandSender
Package
Description
-
Uses of CommandSender in com.mrivanplays.ivancord.api.command
Modifier and TypeMethodDescriptionCollection<com.mojang.brigadier.tree.CommandNode<CommandSender>>
CommandDispatcherProxy.getBrigadierCommands()
@NonNull com.mojang.brigadier.tree.LiteralCommandNode<CommandSender>
BrigadierCommand.getCommandNode()
Modifier and TypeMethodDescriptionCompletableFuture<com.mojang.brigadier.suggestion.Suggestions>
CommandDispatcherProxy.complete
(CommandSender sender, String input) CommandDispatcherProxy.complete
(CommandSender sender, String input, boolean check) CommandDispatcherProxy.completeWithNames
(CommandSender sender, String input) int
CommandDispatcherProxy.dispatch
(CommandSender sender, String input) boolean
CommandDispatcherProxy.isExecutable
(String commandName, CommandSender sender) ModifierConstructorDescriptionBrigadierCommand
(Plugin plugin, @NonNull com.mojang.brigadier.tree.LiteralCommandNode<CommandSender> commandNode) BrigadierCommand
(Plugin plugin, @NonNull com.mojang.brigadier.tree.LiteralCommandNode<CommandSender> commandNode, String[] aliases) BrigadierCommand
(Plugin plugin, com.mojang.brigadier.builder.LiteralArgumentBuilder<CommandSender> argumentBuilder) BrigadierCommand
(Plugin plugin, com.mojang.brigadier.builder.LiteralArgumentBuilder<CommandSender> argumentBuilder, String... aliases) -
Uses of CommandSender in io.github.waterfallmc.waterfall.exception
Modifier and TypeMethodDescriptionProxyCommandException.getCommandSender()
Gets the command sender which executed the command requestModifierConstructorDescriptionprotected
ProxyCommandException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace, Command command, CommandSender commandSender, String[] arguments) ProxyCommandException
(String message, Throwable cause, Command command, CommandSender commandSender, String[] arguments) ProxyCommandException
(Throwable cause, Command command, CommandSender commandSender, String[] arguments) protected
ProxyTabCompleteException
(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace, Command command, CommandSender commandSender, String[] arguments) ProxyTabCompleteException
(String message, Throwable cause, Command command, CommandSender commandSender, String[] arguments) ProxyTabCompleteException
(Throwable cause, Command command, CommandSender commandSender, String[] arguments) -
Uses of CommandSender in net.md_5.bungee.api
Modifier and TypeMethodDescriptionabstract CommandSender
ProxyServer.getConsole()
Returns the console overlord for this proxy. -
Uses of CommandSender in net.md_5.bungee.api.config
Modifier and TypeMethodDescriptionboolean
ServerInfo.canAccess
(CommandSender sender) Whether the player can access this server. -
Uses of CommandSender in net.md_5.bungee.api.connection
Modifier and TypeInterfaceDescriptioninterface
Represents a player physically connected to the world hosted on this server.interface
Represents a player whose connection is being connected to somewhere else, whether it be a remote or embedded server. -
Uses of CommandSender in net.md_5.bungee.api.event
Modifier and TypeMethodDescriptionPermissionCheckEvent.getSender()
The command sender being checked for a permission.ProxyReloadEvent.getSender()
Creator of the action.ModifierConstructorDescriptionPermissionCheckEvent
(CommandSender sender, String permission, boolean hasPermission) ProxyReloadEvent
(CommandSender sender) -
Uses of CommandSender in net.md_5.bungee.api.plugin
Modifier and TypeMethodDescriptionCollection<com.mojang.brigadier.tree.CommandNode<CommandSender>>
PluginManager.getCommandsAsBrigadier()
Gets all registered commands as brigadier commands.Modifier and TypeMethodDescriptionboolean
PluginManager.dispatchCommand
(CommandSender sender, String commandLine) boolean
PluginManager.dispatchCommand
(CommandSender sender, String commandLine, List<String> tabResults) Execute a command if it is registered, else return false.void
Command.execute
(CommandSender sender, String[] args) Deprecated.new execute method, including alias.void
Command.execute
(CommandSender sender, String alias, String[] args) Execute this command with the specified sender, alias and arguments.CompletableFuture<com.mojang.brigadier.suggestion.Suggestions>
PluginManager.getBrigadierCompletions
(CommandSender sender, String commandLine) boolean
Command.hasPermission
(CommandSender sender) Check if this command can be executed by the given sender.boolean
PluginManager.isExecutableCommand
(String commandName, CommandSender sender) Checks if the command is registered and can possibly be executed by the sender (without taking permissions into account).TabExecutor.onTabComplete
(CommandSender sender, String[] args) Deprecated.new tab complete method, including alias.TabExecutor.onTabComplete
(CommandSender sender, String alias, String[] args) PluginManager.tabCompleteCommand
(CommandSender sender, String commandLine) Searches for tab-complete suggestions for the given command line. -
Uses of CommandSender in net.md_5.bungee.command
Modifier and TypeMethodDescriptionPlayerCommand.onTabComplete
(CommandSender sender, String[] args) Deprecated.