类 ReloadCommand
java.lang.Object
org.bukkit.command.Command
org.bukkit.command.defaults.BukkitCommand
org.bukkit.command.defaults.ReloadCommand
- 
字段概要从类继承的字段 org.bukkit.command.Commanddescription, timings, usageMessage
- 
构造器概要构造器
- 
方法概要从类继承的方法 org.bukkit.command.CommandbroadcastCommandMessage, broadcastCommandMessage, getAliases, getDescription, getLabel, getName, getPermission, getPermissionMessage, getUsage, isRegistered, register, setAliases, setDescription, setLabel, setName, setPermission, setPermissionMessage, setUsage, tabComplete, testPermission, testPermissionSilent, toString, unregister
- 
构造器详细资料- 
ReloadCommand
 
- 
- 
方法详细资料- 
executepublic boolean execute(@NotNull @NotNull CommandSender sender, @NotNull @NotNull String currentAlias, @NotNull @NotNull String[] args) 从类复制的说明:Command执行命令.原文:Executes the command, returning its success 
- 
tabComplete@NotNull public @NotNull List<String> tabComplete(@NotNull @NotNull CommandSender sender, @NotNull @NotNull String alias, @NotNull @NotNull String[] args) throws IllegalArgumentException 从类复制的说明:Command对此命令进行tab补全并返回补全项列表.原文:Executed on tab completion for this command, returning a list of options the player can tab through. - 覆盖:
- tabComplete在类中- Command
- 参数:
- sender- 执行此命令的对象
- alias- 执行命令所用的别名
- args- 传递给此命令的所有参数,用' '分割
- 返回:
- 指定参数的tab补全项列表.列表永远不会为null. 列表可能是不可变的.
- 抛出:
- IllegalArgumentException- 如果sender, alias, args任意一参数为null
 
 
-