Uses of Class
org.hibernate.event.spi.EventType
-
Packages that use EventType Package Description org.hibernate.boot.cfgxml.spi An SPI service for processing and handlingcfg.xmlfiles.org.hibernate.event.service.internal Implementation of the event listener registration service.org.hibernate.event.service.spi An SPI for the event listener registration service.org.hibernate.event.spi Defines the event types and event listener interfaces for events produced by the statefulSession. -
-
Uses of EventType in org.hibernate.boot.cfgxml.spi
Methods in org.hibernate.boot.cfgxml.spi that return types with arguments of type EventType Modifier and Type Method Description Map<EventType<?>,Set<String>>LoadedConfig. getEventListenerMap()Methods in org.hibernate.boot.cfgxml.spi with parameters of type EventType Modifier and Type Method Description voidLoadedConfig. addEventListener(EventType<?> eventType, String listenerClass) -
Uses of EventType in org.hibernate.event.service.internal
Methods in org.hibernate.event.service.internal with parameters of type EventType Modifier and Type Method Description <T> voidEventListenerRegistryImpl. appendListeners(EventType<T> type, Class<? extends T>... listenerClasses)<T> voidEventListenerRegistryImpl. appendListeners(EventType<T> type, T... listeners)<T> EventListenerGroup<T>EventListenerRegistryImpl. getEventListenerGroup(EventType<T> eventType)<T> EventListenerGroup<T>EventListenerRegistryImpl.Builder. getListenerGroup(EventType<T> eventType)<T> voidEventListenerRegistryImpl.Builder. prepareListeners(EventType<T> eventType)<T> voidEventListenerRegistryImpl.Builder. prepareListeners(EventType<T> type, T defaultListener)<T> voidEventListenerRegistryImpl.Builder. prepareListeners(EventType<T> type, T defaultListener, Function<EventType<T>,org.hibernate.event.service.internal.EventListenerGroupImpl<T>> groupCreator)<T> voidEventListenerRegistryImpl. prependListeners(EventType<T> type, Class<? extends T>... listenerClasses)<T> voidEventListenerRegistryImpl. prependListeners(EventType<T> type, T... listeners)<T> voidEventListenerRegistryImpl. setListeners(EventType<T> type, Class<? extends T>... listenerClasses)<T> voidEventListenerRegistryImpl. setListeners(EventType<T> type, T... listeners)Method parameters in org.hibernate.event.service.internal with type arguments of type EventType Modifier and Type Method Description EventListenerRegistryEventListenerRegistryImpl.Builder. buildRegistry(Map<String,EventType<?>> registeredEventTypes)<T> voidEventListenerRegistryImpl.Builder. prepareListeners(EventType<T> type, T defaultListener, Function<EventType<T>,org.hibernate.event.service.internal.EventListenerGroupImpl<T>> groupCreator) -
Uses of EventType in org.hibernate.event.service.spi
Methods in org.hibernate.event.service.spi that return EventType Modifier and Type Method Description EventType<T>EventListenerGroup. getEventType()Retrieve the event type associated with this groups of listeners.Methods in org.hibernate.event.service.spi with parameters of type EventType Modifier and Type Method Description <T> voidEventListenerRegistry. appendListeners(EventType<T> type, Class<? extends T>... listeners)<T> voidEventListenerRegistry. appendListeners(EventType<T> type, T... listeners)<T> EventListenerGroup<T>EventListenerRegistry. getEventListenerGroup(EventType<T> eventType)<T> voidEventListenerRegistry. prependListeners(EventType<T> type, Class<? extends T>... listeners)<T> voidEventListenerRegistry. prependListeners(EventType<T> type, T... listeners)<T> voidEventListenerRegistry. setListeners(EventType<T> type, Class<? extends T>... listeners)<T> voidEventListenerRegistry. setListeners(EventType<T> type, T... listeners) -
Uses of EventType in org.hibernate.event.spi
Methods in org.hibernate.event.spi that return EventType Modifier and Type Method Description <T> EventType<T>EventEngineContributions. contributeEventType(String name, Class<T> listenerRole)Register a custom event type.<T> EventType<T>EventEngineContributions. contributeEventType(String name, Class<T> listenerRole, T... defaultListener)Register a custom event type with a default listener.static <T> EventType<T>EventType. create(String name, Class<T> listenerRole, int ordinal)<T> EventType<T>EventEngineContributions. findEventType(String name)Return the EventType by name, if one<T> EventType<T>EventEngine. findRegisteredEventType(String name)static EventType<?>EventType. resolveEventTypeByName(String eventName)Find anEventTypeby its nameMethods in org.hibernate.event.spi that return types with arguments of type EventType Modifier and Type Method Description Collection<EventType<?>>EventEngine. getRegisteredEventTypes()static Collection<EventType<?>>EventType. values()Get a collection of all the standardEventTypeinstances.Methods in org.hibernate.event.spi with parameters of type EventType Modifier and Type Method Description <T> voidEventEngineContributions. configureListeners(EventType<T> eventType, Consumer<EventListenerGroup<T>> action)Perform an action against the listener group for the specified event-type
-