Enum Class MutationKind

java.lang.Object
java.lang.Enum<MutationKind>
org.hibernate.action.queue.spi.MutationKind
All Implemented Interfaces:
Serializable, Comparable<MutationKind>, Constable

@Incubating public enum MutationKind extends Enum<MutationKind>
Kind of table mutation
Since:
8.0
  • Enum Constant Details

    • INSERT

      public static final MutationKind INSERT
      An INSERT
    • UPDATE

      public static final MutationKind UPDATE
      An UPDATE
    • UPDATE_ORDER

      public static final MutationKind UPDATE_ORDER
      An UPDATE used to (re)assign a collection row's order/index column only.ity
    • DELETE

      public static final MutationKind DELETE
      A DELETE
    • NO_OP

      public static final MutationKind NO_OP
      Specialized no-op (callback carrier)
  • Method Details

    • values

      public static MutationKind[] 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 MutationKind 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