Uses of Package
org.hibernate.engine.internal
-
Packages that use org.hibernate.engine.internal Package Description org.hibernate.action.internal The various concrete action implementations.org.hibernate.engine.internal Support for many of the internal workings of Hibernate.org.hibernate.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.type A HibernateType
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.internal Class Description NonNullableTransientDependencies Tracks non-nullable transient entities that would cause a particular entity insert to fail. -
Classes in org.hibernate.engine.internal used by org.hibernate.engine.internal Class Description AbstractEntityEntry A base implementation ofEntityEntry
.AbstractEntityEntry.BooleanState Represents a boolean flag stored within a number value, using one bit at a specified offset.AbstractEntityEntry.EnumState Represents an enum value stored within a number value, using four bits starting at a specified offset.CascadePoint Describes the point at which a cascade is occurringEntityEntryContext Defines a context for maintaining the relation between an entity associated with the Session ultimately owning this EntityEntryContext instance and that entity's corresponding EntityEntry.ImmutableEntityEntryFactory Factory for the safe approach implementation ofEntityEntry
.ManagedTypeHelper.PersistentAttributeInterceptableAction 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.ManagedTypeHelper.SelfDirtinessTrackerAction ManagedTypeHelper.SelfDirtinessTrackerConsumer MutableEntityEntryFactory Factory for the safe approach implementation ofEntityEntry
.NonNullableTransientDependencies Tracks non-nullable transient entities that would cause a particular entity insert to fail.Nullability.NullabilityCheckType StatefulPersistenceContext 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.internal Class Description StatefulPersistenceContext 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.type Class Description CascadePoint Describes the point at which a cascade is occurring