Uses of Interface
org.hibernate.IdentifierLoadAccess
-
Packages that use IdentifierLoadAccess Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionFactory, which represents an instance of Hibernate at runtime and is the source of new instances ofSessionandStatelessSession, the most important APIs exposing persistence-related operations for entities.org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate. -
-
Uses of IdentifierLoadAccess in org.hibernate
Methods in org.hibernate that return IdentifierLoadAccess Modifier and Type Method Description <T> IdentifierLoadAccess<T>Session. byId(Class<T> entityClass)Create anIdentifierLoadAccessinstance to retrieve the specified entity by primary key.<T> IdentifierLoadAccess<T>Session. byId(String entityName)Create anIdentifierLoadAccessinstance to retrieve the specified entity type by primary key.IdentifierLoadAccess<T>IdentifierLoadAccess. with(CacheMode cacheMode)Specify theCacheModeto use when retrieving the entity.default IdentifierLoadAccess<T>IdentifierLoadAccess. with(RootGraph<T> graph)IdentifierLoadAccess<T>IdentifierLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)IdentifierLoadAccess<T>IdentifierLoadAccess. with(LockOptions lockOptions)Specify theLockOptionsto use when retrieving the entity.IdentifierLoadAccess<T>IdentifierLoadAccess. withReadOnly(boolean readOnly)Specify whether the entity should be loaded in read-only mode. -
Uses of IdentifierLoadAccess in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return IdentifierLoadAccess Modifier and Type Method Description <T> IdentifierLoadAccess<T>SessionDelegatorBaseImpl. byId(Class<T> entityClass)<T> IdentifierLoadAccess<T>SessionDelegatorBaseImpl. byId(String entityName)<T> IdentifierLoadAccess<T>SessionLazyDelegator. byId(Class<T> entityClass)<T> IdentifierLoadAccess<T>SessionLazyDelegator. byId(String entityName)
-