程序包 cn.nukkit.plugin

Enum Class PluginLoadOrder

java.lang.Object
java.lang.Enum<PluginLoadOrder>
cn.nukkit.plugin.PluginLoadOrder
所有已实现的接口:
Serializable, Comparable<PluginLoadOrder>, Constable

public enum PluginLoadOrder extends Enum<PluginLoadOrder>
描述一个Nukkit插件加载顺序的类。
Describes a Nukkit plugin load order.

Nukkit插件的加载顺序有两个:STARTUPPOSTWORLD
The load order of a Nukkit plugin can be STARTUP or POSTWORLD.

从以下版本开始:
Nukkit 1.0 | Nukkit API 1.0.0
作者:
MagicDroidX(code) @ Nukkit Project, iNevet(code) @ Nukkit Project, 粉鞋大妈(javadoc) @ Nukkit Project
  • 枚举常量详细资料

    • STARTUP

      public static final PluginLoadOrder STARTUP
      表示这个插件在服务器启动时就开始加载。
      Indicates that the plugin will be loaded at startup.
      从以下版本开始:
      Nukkit 1.0 | Nukkit API 1.0.0
      另请参阅:
    • POSTWORLD

      public static final PluginLoadOrder POSTWORLD
      表示这个插件在第一个世界加载完成后开始加载。
      Indicates that the plugin will be loaded after the first/default world was created.
      从以下版本开始:
      Nukkit 1.0 | Nukkit API 1.0.0
      另请参阅:
  • 方法详细资料

    • values

      public static PluginLoadOrder[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      返回:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static PluginLoadOrder valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值