java.lang.Object
org.eclipse.persistence.config.CascadePolicy
Cascade policy hint values.
The class contains all the valid values for QueryHints.REFRESH_CASCADE query hint.
JPA Query Hint Usage:
query.setHint(QueryHints.REFRESH_CASCADE, CascadePolicy.CascadeAllParts);
or
@QueryHint(name=QueryHints.REFRESH_CASCADE, value=CascadePolicy.CascadeAllParts)
Hint values are case-insensitive. "" could be used instead of default value CascadePolicy.DEFAULT.
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.This constructor will be marked private and the class final. -
Method Summary
-
Field Details
-
NoCascading
- See Also:
-
CascadePrivateParts
- See Also:
-
CascadeAllParts
- See Also:
-
CascadeByMapping
- See Also:
-
DEFAULT
- See Also:
-
-
Constructor Details
-
CascadePolicy
Deprecated, for removal: This API element is subject to removal in a future version.This constructor will be marked private and the class final. It is not designed for extensibility.
-