Enum FlushStrategy

java.lang.Object
java.lang.Enum<FlushStrategy>
com.blazebit.persistence.view.FlushStrategy
All Implemented Interfaces:
Serializable, Comparable<FlushStrategy>, java.lang.constant.Constable

public enum FlushStrategy
extends Enum<FlushStrategy>
The flush mode for an updatable entity view.
Since:
1.2.0
Author:
Christian Beikov
  • Enum Constant Details

    • ENTITY

      public static final FlushStrategy ENTITY
      Flushes changes by loading the entity graph and applying changes on the managed objects.
    • QUERY

      public static final FlushStrategy QUERY
      Will flush changes via DML statements if possible, otherwise fallback to ENTITY strategy.
  • Method Details

    • values

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

      public static FlushStrategy valueOf​(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null