public static enum AggregateChange.Kind extends Enum<AggregateChange.Kind>
| Enum Constant and Description |
|---|
DELETE
A
DELETE of an aggregate typically involves a delete on all contained entities. |
SAVE
A
SAVE of an aggregate typically involves an insert or update on the aggregate root plus
inserts, updates, and deletes on the other elements of an aggregate. |
| Modifier and Type | Method and Description |
|---|---|
static AggregateChange.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregateChange.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregateChange.Kind SAVE
SAVE of an aggregate typically involves an insert or update on the aggregate root plus
inserts, updates, and deletes on the other elements of an aggregate.public static final AggregateChange.Kind DELETE
DELETE of an aggregate typically involves a delete on all contained entities.public static AggregateChange.Kind[] values()
for (AggregateChange.Kind c : AggregateChange.Kind.values()) System.out.println(c);
public static AggregateChange.Kind 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 nullCopyright © 2017–2021 Pivotal Software, Inc.. All rights reserved.