Uses of Class
org.hibernate.jpa.event.spi.CallbackType
-
Packages that use CallbackType Package Description org.hibernate.jpa.event.internal Internal details of implementing support for JPA callbacksorg.hibernate.jpa.event.spi The SPI contracts for supporting JPA lifecycle callbacks. -
-
Uses of CallbackType in org.hibernate.jpa.event.internal
Methods in org.hibernate.jpa.event.internal with parameters of type CallbackType Modifier and Type Method Description static List<CallbackDefinition>
CallbackDefinitionResolverLegacyImpl. resolveEmbeddableCallbacks(org.hibernate.annotations.common.reflection.ReflectionManager reflectionManager, Class<?> entityClass, Property embeddableProperty, CallbackType callbackType)
static List<CallbackDefinition>
CallbackDefinitionResolverLegacyImpl. resolveEntityCallbacks(org.hibernate.annotations.common.reflection.ReflectionManager reflectionManager, org.hibernate.annotations.common.reflection.XClass entityClass, CallbackType callbackType)
-
Uses of CallbackType in org.hibernate.jpa.event.spi
Methods in org.hibernate.jpa.event.spi that return CallbackType Modifier and Type Method Description CallbackType
Callback. getCallbackType()
The type of callback (pre-update, pre-persist, etc) handledstatic CallbackType
CallbackType. valueOf(String name)
Returns the enum constant of this type with the specified name.static CallbackType[]
CallbackType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.jpa.event.spi with parameters of type CallbackType Modifier and Type Method Description boolean
CallbackRegistry. hasRegisteredCallbacks(Class<?> entityClass, CallbackType callbackType)
Do we have any registered callbacks of the given type for the given entity?
-