java.lang.EnumDefines the set of cascadable operations that are propagated to the associated entity. The value cascade=ALL is equivalent to cascade={PERSIST, MERGE, REMOVE, REFRESH}.javax.persistence.CascadeType
Emmanuel - Bernard| Field Summary | ||
|---|---|---|
| public CascadeType | ALL | Cascade all operations |
| public CascadeType | PERSIST | Cascade persist operations |
| public CascadeType | MERGE | Cascade merge operations |
| public CascadeType | REMOVE | Cascade remove operations |
| public CascadeType | REFRESH | Cascade refresh operations |