Uses of Interface
org.hibernate.metamodel.mapping.EntityVersionMapping
-
Packages that use EntityVersionMapping Package Description org.hibernate.engine.internal Support for many of the internal workings of Hibernate.org.hibernate.generator.internal org.hibernate.metamodel.mapping Defines the runtime mapping metamodel, which describes the mapping of the application's domain model parts (entities, attributes) to relational database objects (tables, columns).org.hibernate.metamodel.mapping.internal org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.persister.entity.mutation Defines support for performing mutation operations originating from persistence-context events.org.hibernate.query.derived org.hibernate.sql.exec.internal Implementation of the SPI for execution of SQL statements via JDBC. -
-
Uses of EntityVersionMapping in org.hibernate.engine.internal
Methods in org.hibernate.engine.internal with parameters of type EntityVersionMapping Modifier and Type Method Description static Object
Versioning. increment(Object version, EntityVersionMapping versionMapping, SharedSessionContractImplementor session)
Generate the next increment in the optimistic locking value according theVersionJavaType
contract for the version property.static Object
Versioning. seed(EntityVersionMapping versionMapping, SharedSessionContractImplementor session)
Create an initial optimistic locking value according theEntityVersionMapping
contract for the version property.static @org.hibernate.Remove boolean
Versioning. seedVersion(Object[] fields, int versionProperty, EntityVersionMapping versionMapping, SharedSessionContractImplementor session)
-
Uses of EntityVersionMapping in org.hibernate.generator.internal
Constructors in org.hibernate.generator.internal with parameters of type EntityVersionMapping Constructor Description VersionGeneration(EntityVersionMapping versionMapping)
-
Uses of EntityVersionMapping in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping that return EntityVersionMapping Modifier and Type Method Description EntityVersionMapping
EntityMappingType. getVersionMapping()
Mapping details for the entity's version when using the version strategy. -
Uses of EntityVersionMapping in org.hibernate.metamodel.mapping.internal
Classes in org.hibernate.metamodel.mapping.internal that implement EntityVersionMapping Modifier and Type Class Description class
EntityVersionMappingImpl
-
Uses of EntityVersionMapping in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return EntityVersionMapping Modifier and Type Method Description protected EntityVersionMapping
AbstractEntityPersister. generateVersionMapping(Supplier<?> templateInstanceCreator, PersistentClass bootEntityDescriptor, MappingModelCreationProcess creationProcess)
protected static EntityVersionMapping
AbstractEntityPersister. generateVersionMapping(AbstractEntityPersister entityPersister, Supplier<?> templateInstanceCreator, PersistentClass bootModelRootEntityDescriptor, MappingModelCreationProcess creationProcess)
protected EntityVersionMapping
JoinedSubclassEntityPersister. generateVersionMapping(Supplier<?> templateInstanceCreator, PersistentClass bootEntityDescriptor, MappingModelCreationProcess creationProcess)
EntityVersionMapping
AbstractEntityPersister. getVersionMapping()
-
Uses of EntityVersionMapping in org.hibernate.persister.entity.mutation
Methods in org.hibernate.persister.entity.mutation with parameters of type EntityVersionMapping Modifier and Type Method Description protected Supplier<GeneratedValues>
UpdateCoordinatorStandard. handlePotentialImplicitForcedVersionIncrement(Object entity, Object id, Object[] values, Object oldVersion, int[] incomingDirtyAttributeIndexes, SharedSessionContractImplementor session, EntityVersionMapping versionMapping)
protected GeneratedValues
UpdateCoordinatorStandard. performUpdate(Object entity, Object id, Object rowId, Object[] values, Object oldVersion, Object[] incomingOldValues, boolean hasDirtyCollection, SharedSessionContractImplementor session, EntityVersionMapping versionMapping, int[] dirtyAttributeIndexes, boolean[] attributeUpdateability, boolean forceDynamicUpdate)
-
Uses of EntityVersionMapping in org.hibernate.query.derived
Methods in org.hibernate.query.derived that return EntityVersionMapping Modifier and Type Method Description EntityVersionMapping
AnonymousTupleEntityValuedModelPart. getVersionMapping()
-
Uses of EntityVersionMapping in org.hibernate.sql.exec.internal
Constructors in org.hibernate.sql.exec.internal with parameters of type EntityVersionMapping Constructor Description VersionTypeSeedParameterSpecification(EntityVersionMapping versionMapping)
Constructs a version seed parameter bind specification.
-