Uses of Interface
org.hibernate.MultiIdentifierLoadAccess
-
Packages that use MultiIdentifierLoadAccess Package Description org.hibernate org.hibernate.engine.spi -
-
Uses of MultiIdentifierLoadAccess in org.hibernate
Methods in org.hibernate that return MultiIdentifierLoadAccess Modifier and Type Method Description <T> MultiIdentifierLoadAccess<T>
Session. byMultipleIds(java.lang.Class<T> entityClass)
Create aMultiIdentifierLoadAccess
instance to retrieve multiple entities at once as specified by primary key values.MultiIdentifierLoadAccess
Session. byMultipleIds(java.lang.String entityName)
Create aMultiIdentifierLoadAccess
instance to retrieve multiple entities at once as specified by primary key values.MultiIdentifierLoadAccess<T>
MultiIdentifierLoadAccess. enableOrderedReturn(boolean enabled)
Should the return List be ordered and positional in relation to the incoming ids? If enabled (the default), the return List is ordered and positional relative to the incoming ids.MultiIdentifierLoadAccess<T>
MultiIdentifierLoadAccess. enableReturnOfDeletedEntities(boolean enabled)
Should the multi-load operation be allowed to return entities that are locally deleted? A locally deleted entity is one which has been passed to this Session'sSession.delete(java.lang.Object)
/EntityManager.remove(java.lang.Object)
method, but not yet flushed.MultiIdentifierLoadAccess<T>
MultiIdentifierLoadAccess. enableSessionCheck(boolean enabled)
Specify whether we should check the Session to see whether it already contains any of the entities to be loaded in a managed state for the purpose of not including those ids to the batch-load SQL.MultiIdentifierLoadAccess<T>
MultiIdentifierLoadAccess. with(CacheMode cacheMode)
Specify theCacheMode
to use when retrieving the entity.MultiIdentifierLoadAccess<T>
MultiIdentifierLoadAccess. with(LockOptions lockOptions)
Specify theLockOptions
to use when retrieving the entity.MultiIdentifierLoadAccess<T>
MultiIdentifierLoadAccess. withBatchSize(int batchSize)
Specify a batch size for loading the entities (how many at a time). -
Uses of MultiIdentifierLoadAccess in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return MultiIdentifierLoadAccess Modifier and Type Method Description <T> MultiIdentifierLoadAccess<T>
SessionDelegatorBaseImpl. byMultipleIds(java.lang.Class<T> entityClass)
MultiIdentifierLoadAccess
SessionDelegatorBaseImpl. byMultipleIds(java.lang.String entityName)
-