@JsonObject(value="DeletionFetchOption") public enum DeletionFetchOption extends java.lang.Enum<DeletionFetchOption> implements java.io.Serializable
Enum Constant and Description |
---|
ALL_ENTITIES
Deletions will contain the originally deleted entities and all the related entities that were also deleted by a cascade.
|
ORIGINAL_ENTITIES
Deletions will contain only the originally deleted entities
|
Modifier and Type | Method and Description |
---|---|
static DeletionFetchOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeletionFetchOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeletionFetchOption ORIGINAL_ENTITIES
public static final DeletionFetchOption ALL_ENTITIES
public static DeletionFetchOption[] values()
for (DeletionFetchOption c : DeletionFetchOption.values()) System.out.println(c);
public static DeletionFetchOption 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