Enum Class PluginLoadOrder

java.lang.Object
java.lang.Enum<PluginLoadOrder>
cn.nukkit.plugin.PluginLoadOrder
All Implemented Interfaces:
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.

Since:
Nukkit 1.0 | Nukkit API 1.0.0
Author:
MagicDroidX(code) @ Nukkit Project, iNevet(code) @ Nukkit Project, 粉鞋大妈(javadoc) @ Nukkit Project
  • Enum Constant Details

    • STARTUP

      public static final PluginLoadOrder STARTUP
      表示这个插件在服务器启动时就开始加载。
      Indicates that the plugin will be loaded at startup.
      Since:
      Nukkit 1.0 | Nukkit API 1.0.0
      See Also:
    • POSTWORLD

      public static final PluginLoadOrder POSTWORLD
      表示这个插件在第一个世界加载完成后开始加载。
      Indicates that the plugin will be loaded after the first/default world was created.
      Since:
      Nukkit 1.0 | Nukkit API 1.0.0
      See Also:
  • Method Details

    • values

      public static PluginLoadOrder[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      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.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null