java.io.Serializable
, java.lang.Comparable<CascadeType>
public enum CascadeType extends java.lang.Enum<CascadeType>
cascade=ALL
is equivalent to
cascade={PERSIST, MERGE, REMOVE, REFRESH, DETACH}
.Enum Constant | Description |
---|---|
ALL |
Cascade all operations
|
DETACH |
Cascade detach operation
|
MERGE |
Cascade merge operation
|
PERSIST |
Cascade persist operation
|
REFRESH |
Cascade refresh operation
|
REMOVE |
Cascade remove operation
|
Modifier and Type | Method | Description |
---|---|---|
static CascadeType |
valueOf(java.lang.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
public static final CascadeType MERGE
public static final CascadeType REMOVE
public static final CascadeType REFRESH
public static final CascadeType DETACH
public static CascadeType[] values()
for (CascadeType c : CascadeType.values()) System.out.println(c);
public static CascadeType 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 nullCopyright © 2018. All rights reserved.