public enum CascadeType extends Enum<CascadeType>
Enum Constant and Description |
---|
ALL
Cascade all operations
|
MERGE
Cascade merge operation
|
NONE
Do not set any Cascade, let JPA default applies
|
PERSIST
Cascade persist operation
|
REFRESH
Cascade refresh operation
|
REMOVE
Cascade remove operation
|
Modifier and Type | Method and Description |
---|---|
javax.persistence.CascadeType |
asJpaType() |
boolean |
isJpaType() |
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 NONE
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 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 nullpublic boolean isJpaType()
public javax.persistence.CascadeType asJpaType()
Copyright © 2005-2013 JAXIO S.A.R.L. - All Rights Reserved.