001 package org.bukkit.plugin;
002
003 /**
004 * Represents the order in which a plugin should be initialized and enabled
005 */
006 public enum PluginLoadOrder {
007
008 /**
009 * Indicates that the plugin will be loaded at startup
010 */
011 STARTUP,
012 /**
013 * Indicates that the plugin will be loaded after the first/default world
014 * was created
015 */
016 POSTWORLD
017 }