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 the Session ultimately owning this EntityEntryContext instance and that entity's corresponding EntityEntry. 2 approaches are supported: the entity->EntityEntry association is maintained in a Map within this class the EntityEntry is injected into the entity via it implementing theManagedEntitycontract, either directly or through bytecode enhancement.Factory for the safe approach implementation ofEntityEntry.This interface has been introduced to mitigate JDK-8180450.
Sadly, usingBiConsumerwill 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 thePersistenceContextcontract, 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
PersistenceContextcontract, meaning that we maintain this state throughout the life of the persistence context. -
Classes in org.hibernate.engine.internal used by org.hibernate.type