Uses of Interface
net.md_5.bungee.api.CommandSender
-
-
Uses of CommandSender in io.github.waterfallmc.waterfall.exception
Methods in io.github.waterfallmc.waterfall.exception that return CommandSender Modifier and Type Method Description CommandSender
ProxyCommandException. getCommandSender()
Gets the command sender which executed the command requestConstructors in io.github.waterfallmc.waterfall.exception with parameters of type CommandSender Constructor Description 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)
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
Methods in net.md_5.bungee.api that return CommandSender Modifier and Type Method Description abstract CommandSender
ProxyServer. getConsole()
Returns the console overlord for this proxy. -
Uses of CommandSender in net.md_5.bungee.api.config
Methods in net.md_5.bungee.api.config with parameters of type CommandSender Modifier and Type Method Description boolean
ServerInfo. canAccess(CommandSender sender)
Whether the player can access this server. -
Uses of CommandSender in net.md_5.bungee.api.connection
Subinterfaces of CommandSender in net.md_5.bungee.api.connection Modifier and Type Interface Description interface
ConnectedPlayer
Represents a player physically connected to the world hosted on this server.interface
ProxiedPlayer
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
Methods in net.md_5.bungee.api.event that return CommandSender Modifier and Type Method Description CommandSender
PermissionCheckEvent. getSender()
The command sender being checked for a permission.CommandSender
ProxyReloadEvent. getSender()
Creator of the action.Constructors in net.md_5.bungee.api.event with parameters of type CommandSender Constructor Description PermissionCheckEvent(CommandSender sender, String permission, boolean hasPermission)
ProxyReloadEvent(CommandSender sender)
-
Uses of CommandSender in net.md_5.bungee.api.plugin
Methods in net.md_5.bungee.api.plugin with parameters of type CommandSender Modifier and Type Method Description boolean
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.abstract void
Command. execute(CommandSender sender, String[] args)
Execute this command with the specified sender and arguments.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).Iterable<String>
TabExecutor. onTabComplete(CommandSender sender, String[] args)
List<String>
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
Methods in net.md_5.bungee.command with parameters of type CommandSender Modifier and Type Method Description Iterable<String>
PlayerCommand. onTabComplete(CommandSender sender, String[] args)
Deprecated.
-