Enum Class EventPriority

java.lang.Object
java.lang.Enum<EventPriority>
net.neoforged.bus.api.EventPriority
All Implemented Interfaces:
Serializable, Comparable<EventPriority>, Constable

public enum EventPriority extends Enum<EventPriority>
Different priorities for Event listeners. NORMAL is the default level for a listener registered without a priority.
See Also:
  • Enum Constant Details

    • HIGHEST

      public static final EventPriority HIGHEST
      Priority of event listeners, listeners will be sorted with respect to this priority level. Note: Due to using a ArrayList in the ListenerList, these need to stay in a contiguous index starting at 0. {Default ordinal}
    • HIGH

      public static final EventPriority HIGH
    • NORMAL

      public static final EventPriority NORMAL
    • LOW

      public static final EventPriority LOW
    • LOWEST

      public static final EventPriority LOWEST
  • 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