Uses of Class
org.hibernate.engine.internal.CascadePoint
-
Packages that use CascadePoint Package Description org.hibernate.engine.internal Support for many of the internal workings of Hibernate.org.hibernate.type A HibernateType
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 CascadePoint Modifier and Type Method Description static CascadePoint
CascadePoint. valueOf(String name)
Returns the enum constant of this type with the specified name.static CascadePoint[]
CascadePoint. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.engine.internal with parameters of type CascadePoint Modifier and Type Method Description static <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.type
Methods in org.hibernate.type with parameters of type CascadePoint Modifier and Type Method Description abstract boolean
ForeignKeyDirection. cascadeNow(CascadePoint cascadePoint)
Should we cascade at this cascade point?
-