Enum Class PersistableIsNewStrategy

java.lang.Object
java.lang.Enum<PersistableIsNewStrategy>
org.springframework.data.support.PersistableIsNewStrategy
All Implemented Interfaces:
Serializable, Comparable<PersistableIsNewStrategy>, Constable, IsNewStrategy

public enum PersistableIsNewStrategy extends Enum<PersistableIsNewStrategy> implements IsNewStrategy
IsNewStrategy that invokes Persistable.isNew() on the given object.
Author:
Oliver Gierke, Johannes Englmeier
  • Enum Constant Details

  • Method Details

    • values

      public static PersistableIsNewStrategy[] 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 PersistableIsNewStrategy 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
    • isNew

      public boolean isNew(Object entity)
      Description copied from interface: IsNewStrategy
      Returns whether the given entity is new, i.e. has never been persisted before or not.
      Specified by:
      isNew in interface IsNewStrategy
      Parameters:
      entity - must not be null.
      Returns: