public enum CascadeType extends Enum<CascadeType>
| Enum Constant and Description | 
|---|
| ALLIncludes all types listed here. | 
| DELETECorresponds to the Hibernate native DELETE action. | 
| DELETE_ORPHANDeprecated. 
 use @OneToOne(orphanRemoval=true) or @OneToMany(orphanRemoval=true) | 
| DETACHCorresponds to  CascadeType.DETACH. | 
| EVICTDeprecated. 
 | 
| LOCKCorresponds to the Hibernate native LOCK action. | 
| MERGECorresponds to  CascadeType.MERGE. | 
| PERSISTCorresponds to  CascadeType.PERSIST. | 
| REFRESHCorresponds to  CascadeType.REFRESH. | 
| REMOVECorresponds to  CascadeType.REMOVE. | 
| REPLICATECorresponds to the Hibernate native REPLICATE action. | 
| SAVE_UPDATECorresponds to the Hibernate native SAVE_UPDATE (direct reattachment) action. | 
| Modifier and Type | Method and Description | 
|---|---|
| static CascadeType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static CascadeType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final CascadeType ALL
public static final CascadeType PERSIST
CascadeType.PERSIST.public static final CascadeType MERGE
CascadeType.MERGE.public static final CascadeType REMOVE
CascadeType.REMOVE.public static final CascadeType REFRESH
CascadeType.REFRESH.public static final CascadeType DELETE
public static final CascadeType SAVE_UPDATE
public static final CascadeType REPLICATE
@Deprecated public static final CascadeType DELETE_ORPHAN
public static final CascadeType LOCK
@Deprecated public static final CascadeType EVICT
CascadeType.DETACHpublic static final CascadeType DETACH
CascadeType.DETACH.public static CascadeType[] values()
for (CascadeType c : CascadeType.values()) System.out.println(c);
public static CascadeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2001-2018 Red Hat, Inc. All Rights Reserved.