Enum Class EventPriority

java.lang.Object
java.lang.Enum<EventPriority>
dev.polv.taleapi.event.EventPriority
All Implemented Interfaces:
Serializable, Comparable<EventPriority>, Constable

public enum EventPriority extends Enum<EventPriority>
Defines the priority order for event listener execution.

Listeners are executed from HIGHEST to LOWEST. Higher priority listeners run first, giving them first access to handle events.

Execution order: HIGHEST → HIGH → NORMAL → LOW → LOWEST

  • Enum Constant Details

    • LOWEST

      public static final EventPriority LOWEST
      Executed last. Use for listeners that run after all others.
    • LOW

      public static final EventPriority LOW
      Executed after NORMAL.
    • NORMAL

      public static final EventPriority NORMAL
      Default priority. Use for most listeners.
    • HIGH

      public static final EventPriority HIGH
      Executed after HIGHEST.
    • HIGHEST

      public static final EventPriority HIGHEST
      Executed first. Use for listeners that need priority access to handle the event before others.
  • 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