EntityManager.">
Jakarta Persistence (JPA) Enum

jakarta.persistence.FlushModeType

java.lang.Object
  java.lang.Enum<jakarta.persistence.FlushModeType>
    jakarta.persistence.FlushModeType
Implemented Interfaces:
Constable, Comparable<E>, Serializable

Enumerates flush modes recognized by the EntityManager.

When queries are executed within a transaction, if AUTO is set on the Query or TypedQuery<X> object, or if the flush mode setting for the persistence context is AUTO (the default) and a flush mode setting has not been specified for the Query or TypedQuery object, the persistence provider is responsible for ensuring that all updates to the state of all entities in the persistence context which could potentially affect the result of the query are visible to the processing of the query. The persistence provider implementation may achieve this by flushing updates to those entities to the database or by some other means.

On the other hand, if COMMIT is set, the effect of updates made to entities in the persistence context on queries is unspecified.

If there is no transaction active or the persistence context is not joined to the current transaction, the persistence provider must not flush to the database.

See Also:
Since:
Jakarta Persistence (JPA) 1.0

Enum Constants

(Default) Flushing to occur at query execution.
Since:
Jakarta Persistence (JPA) 1.0
Flushing to occur at transaction commit.
The provider may flush at other times, but is not required to.
Since:
Jakarta Persistence (JPA) 1.0

Synthetic Public Static Methods:

values(), valueOf(String)

Additional JDK methods inherited from java.lang.Enum

clone(), compareTo(E), describeConstable(), equals(Object), finalize(), getDeclaringClass(), hashCode(), name(), ordinal(), readObject(ObjectInputStream), readObjectNoData(), toString(), valueOf(Class,String)

Additional JDK methods inherited from java.lang.Object

clone(), equals(Object), finalize(), getClass(), hashCode(), notify(), notifyAll(), toString(), wait(), wait(long), wait(long,int), wait0(long)

Additional JDK methods inherited from java.lang.constant.Constable

describeConstable()

Additional JDK methods inherited from java.lang.Comparable

compareTo(T)