Enum Class EventPriority

java.lang.Object
java.lang.Enum<EventPriority>
me.hackware.api.event.EventPriority
All Implemented Interfaces:
Serializable, Comparable<EventPriority>, Constable

public enum EventPriority extends Enum<EventPriority>
Listener priority — handlers are sorted by descending ordinal so HIGHEST fires first and LOWEST fires last. Use sparingly; most listeners should stay at NORMAL.
  • Enum Constant Details

    • LOWEST

      public static final EventPriority LOWEST
      Runs last. Use for final overrides / cleanup.
    • LOW

      public static final EventPriority LOW
      Runs after normal listeners.
    • NORMAL

      public static final EventPriority NORMAL
      Default priority.
    • HIGH

      public static final EventPriority HIGH
      Runs before normal listeners.
    • HIGHEST

      public static final EventPriority HIGHEST
      Runs first. Use for read-only monitoring / logging.
  • Method Details

    • values

      public static EventPriority[] 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 EventPriority 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