Uses of Enum Class
com.ultikits.ultitools.events.EventPriority
Packages that use EventPriority
-
Uses of EventPriority in com.ultikits.ultitools.entities
Fields in com.ultikits.ultitools.entities declared as EventPriorityConstructors in com.ultikits.ultitools.entities with parameters of type EventPriorityModifierConstructorDescriptionHandlerEntry(Class<? extends ModuleEvent> eventType, EventPriority priority, boolean ignoreCancelled, String ownerModule, Method method, Object instance) Constructor for annotation-based handlers.HandlerEntry(Class<? extends ModuleEvent> eventType, EventPriority priority, boolean ignoreCancelled, String ownerModule, Consumer<? extends ModuleEvent> consumer) Constructor for programmatic handlers. -
Uses of EventPriority in com.ultikits.ultitools.events
Methods in com.ultikits.ultitools.events that return EventPriorityModifier and TypeMethodDescriptionstatic EventPriorityReturns the enum constant of this class with the specified name.static EventPriority[]EventPriority.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.ultikits.ultitools.events with parameters of type EventPriorityModifier and TypeMethodDescriptionvoidEventBus.register(Class<? extends ModuleEvent> eventType, EventPriority priority, boolean ignoreCancelled, String ownerModule, Method method, Object instance) Register an annotation-based handler.<T extends ModuleEvent>
SubscriptionEventBus.subscribe(Class<T> eventType, EventPriority priority, boolean ignoreCancelled, String ownerModule, Consumer<T> consumer) Register a programmatic handler with full options.