public enum CascadeAction extends java.lang.Enum<CascadeAction>
| Enum Constant and Description | 
|---|
DELETE
Delete the referencing object. 
 | 
NONE
Take no action. 
 | 
UPDATE
Update the referencing object. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static CascadeAction | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static CascadeAction[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final CascadeAction NONE
public static final CascadeAction UPDATE
public static final CascadeAction DELETE
public static CascadeAction[] values()
for (CascadeAction c : CascadeAction.values()) System.out.println(c);
public static CascadeAction valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null