Uses of Interface
org.hibernate.engine.spi.EntityHolder
-
Packages that use EntityHolder Package Description org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.sql.exec.spi SPI for execution of SQL statements via JDBC.org.hibernate.sql.results.jdbc.spi -
-
Uses of EntityHolder in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return EntityHolder Modifier and Type Method Description EntityHolderPersistenceContext. addEntityHolder(EntityKey key, Object entity)EntityHolderPersistenceContext. claimEntityHolderIfPossible(EntityKey key, @Nullable Object entity, JdbcValuesSourceProcessingState processingState, EntityInitializer<?> initializer)Return an existing entity holder for the entity key, possibly creating one if necessary.default @Nullable EntityHolderPersistenceContext. detachEntity(EntityKey key)Remove theEntityHolderand set its state to DETACHED@Nullable EntityHolderPersistenceContext. getEntityHolder(EntityKey key)@Nullable EntityHolderPersistenceContext. removeEntityHolder(EntityKey key)Methods in org.hibernate.engine.spi that return types with arguments of type EntityHolder Modifier and Type Method Description Map<EntityKey,EntityHolder>PersistenceContext. getEntityHoldersByKey()Doubly internalMethods in org.hibernate.engine.spi with parameters of type EntityHolder Modifier and Type Method Description voidSubselectFetch.RegistrationHandler. addKey(EntityHolder holder)voidSubselectFetch.StandardRegistrationHandler. addKey(EntityHolder holder)ObjectPersistenceContext. proxyFor(EntityHolder holder)Deprecated, for removal: This API element is subject to removal in a future version.ObjectPersistenceContext. proxyFor(EntityHolder holder, EntityPersister persister)Method parameters in org.hibernate.engine.spi with type arguments of type EntityHolder Modifier and Type Method Description voidPersistenceContext. postLoad(JdbcValuesSourceProcessingState processingState, Consumer<EntityHolder> loadedConsumer) -
Uses of EntityHolder in org.hibernate.sql.exec.spi
Methods in org.hibernate.sql.exec.spi with parameters of type EntityHolder Modifier and Type Method Description default voidExecutionContext. registerLoadingEntityHolder(EntityHolder holder) -
Uses of EntityHolder in org.hibernate.sql.results.jdbc.spi
Methods in org.hibernate.sql.results.jdbc.spi that return types with arguments of type EntityHolder Modifier and Type Method Description List<EntityHolder>JdbcValuesSourceProcessingState. getLoadingEntityHolders()List<EntityHolder>JdbcValuesSourceProcessingState. getReloadedEntityHolders()Methods in org.hibernate.sql.results.jdbc.spi with parameters of type EntityHolder Modifier and Type Method Description voidJdbcValuesSourceProcessingState. registerLoadingEntityHolder(EntityHolder holder)voidJdbcValuesSourceProcessingState. registerReloadedEntityHolder(EntityHolder holder)
-