Enum ConcurrencyMode

java.lang.Object
java.lang.Enum<ConcurrencyMode>
io.ebeaninternal.api.ConcurrencyMode
All Implemented Interfaces:
Serializable, Comparable<ConcurrencyMode>

public enum ConcurrencyMode extends Enum<ConcurrencyMode>
Optimistic concurrency mode used for updates and deletes.
  • Enum Constant Details

    • NONE

      public static final ConcurrencyMode NONE
      No concurrency checking.
    • VERSION

      public static final ConcurrencyMode VERSION
      Use a version column.
  • Method Details

    • values

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