Uses of Enum Class
org.hibernate.engine.internal.CascadePoint
Packages that use CascadePoint
Package
Description
Support for many of the internal workings of Hibernate.
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
A Hibernate
Type
is a strategy for mapping a Java
property type to a JDBC type or types.-
Uses of CascadePoint in org.hibernate.engine.internal
Methods in org.hibernate.engine.internal that return CascadePointModifier and TypeMethodDescriptionstatic CascadePoint
Returns the enum constant of this class with the specified name.static CascadePoint[]
CascadePoint.values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.hibernate.engine.internal with parameters of type CascadePointModifier and TypeMethodDescriptionstatic <T> void
Cascade.cascade
(CascadingAction<T> action, CascadePoint cascadePoint, EventSource eventSource, EntityPersister persister, Object parent) Cascade an action from the parent entity instance to all its children.static <T> void
Cascade.cascade
(CascadingAction<T> action, CascadePoint cascadePoint, EventSource eventSource, EntityPersister persister, Object parent, T anything) Cascade an action from the parent entity instance to all its children. -
Uses of CascadePoint in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type CascadePointModifier and TypeMethodDescriptionboolean
CascadingAction.cascadeNow
(CascadePoint cascadePoint, AssociationType associationType, SessionFactoryImplementor factory) Does this action cascade to the given association at the givenCascadePoint
?boolean
CascadingActions.BaseCascadingAction.cascadeNow
(CascadePoint cascadePoint, AssociationType associationType, SessionFactoryImplementor factory) -
Uses of CascadePoint in org.hibernate.type
Methods in org.hibernate.type with parameters of type CascadePointModifier and TypeMethodDescriptionabstract boolean
ForeignKeyDirection.cascadeNow
(CascadePoint cascadePoint) Should we cascade at this cascade point?