Java org.hibernate.annotations CascadeType fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.annotations CascadeType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.annotations CascadeType.

The text is from its open source code.

Field

CascadeTypeALL
Includes all types listed here.
CascadeTypePERSIST
Corresponds to javax.persistence.CascadeType#PERSIST .
CascadeTypeMERGE
Corresponds to javax.persistence.CascadeType#MERGE .
CascadeTypeREMOVE
Corresponds to javax.persistence.CascadeType#REMOVE .
CascadeTypeREFRESH
Corresponds to javax.persistence.CascadeType#REFRESH .
CascadeTypeDELETE
Corresponds to the Hibernate native DELETE action.
CascadeTypeSAVE_UPDATE
Corresponds to the Hibernate native SAVE_UPDATE (direct reattachment) action.
CascadeTypeREPLICATE
Corresponds to the Hibernate native REPLICATE action.
CascadeTypeDELETE_ORPHAN
Hibernate originally handled orphan removal as a specialized cascade.
CascadeTypeLOCK
Corresponds to the Hibernate native LOCK action.
CascadeTypeEVICT
JPA originally planned on calling DETACH EVICT.
CascadeTypeDETACH
Corresponds to javax.persistence.CascadeType#DETACH .