Uses of Package
org.hibernate.engine.internal
Packages that use org.hibernate.engine.internal
Package
Description
The various concrete action implementations.
Support for many of the internal workings of Hibernate.
An internal package containing implementations of central Hibernate APIs,
mostly defined in
org.hibernate
.A Hibernate
Type
is a strategy for mapping a Java
property type to a JDBC type or types.-
Classes in org.hibernate.engine.internal used by org.hibernate.action.internalClassDescriptionTracks non-nullable transient entities that would cause a particular entity insert to fail.
-
Classes in org.hibernate.engine.internal used by org.hibernate.engine.internalClassDescriptionA base implementation of
EntityEntry
.Represents a boolean flag stored within a number value, using one bit at a specified offset.Represents an enum value stored within a number value, using four bits starting at a specified offset.Describes the point at which a cascade is occurringDefines a context for maintaining the relation between an entity associated with theSession
ultimately owning thisEntityEntryContext
instance and that entity's correspondingEntityEntry
.Factory for the safe approach implementation ofEntityEntry
.This interface has been introduced to mitigate JDK-8180450.
Sadly, usingBiConsumer
will trigger a type pollution issue because of generics type-erasure:BiConsumer
's actual parameters types on the lambda implemention'sBiConsumer.accept(T, U)
are stealthy enforced viacheckcast
, messing up with type check cached data.Factory for the safe approach implementation ofEntityEntry
.Tracks non-nullable transient entities that would cause a particular entity insert to fail.A stateful implementation of thePersistenceContext
contract, meaning that we maintain this state throughout the life of the persistence context. -
Classes in org.hibernate.engine.internal used by org.hibernate.internalClassDescriptionA stateful implementation of the
PersistenceContext
contract, meaning that we maintain this state throughout the life of the persistence context. -
Classes in org.hibernate.engine.internal used by org.hibernate.type