Enum Class AggregateChange.Kind

java.lang.Object
java.lang.Enum<AggregateChange.Kind>
org.springframework.data.relational.core.conversion.AggregateChange.Kind
All Implemented Interfaces:
Serializable, Comparable<AggregateChange.Kind>, Constable
Enclosing interface:
AggregateChange<T>

public static enum AggregateChange.Kind extends Enum<AggregateChange.Kind>
The kind of action to be performed on an aggregate.
  • Enum Constant Details

    • SAVE

      public static final AggregateChange.Kind 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.
    • DELETE

      public static final AggregateChange.Kind DELETE
      A DELETE of an aggregate typically involves a delete on all contained entities.
  • Method Details

    • values

      public static AggregateChange.Kind[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static AggregateChange.Kind valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null