枚举的使用
org.bukkit.event.player.PlayerLoginEvent.Result
-
org.bukkit.event.player中PlayerLoginEvent.Result的使用
修饰符和类型方法说明PlayerLoginEvent.getResult()
获取当前的登录状态.static PlayerLoginEvent.Result
返回带有指定名称的该类型的枚举常量。static PlayerLoginEvent.Result[]
PlayerLoginEvent.Result.values()
按照声明该枚举类型的常量的顺序, 返回一个包含这些常量的数组。修饰符和类型方法说明void
PlayerLoginEvent.disallow
(@NotNull PlayerLoginEvent.Result result, @NotNull String message) 以给定的理由不允许玩家登录void
PlayerLoginEvent.setResult
(@NotNull PlayerLoginEvent.Result result) 设置登录的状态.限定符构造器说明PlayerLoginEvent
(@NotNull Player player, @NotNull String hostname, @NotNull InetAddress address, @NotNull PlayerLoginEvent.Result result, @NotNull String message, @NotNull InetAddress realAddress) 此构造器预配置事件的结果和消息.