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 ofSession
andStatelessSession
, 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.org.hibernate.loader.internal -
-
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 anIdentifierLoadAccess
instance to retrieve an instance of the given entity type by its primary key.<T> IdentifierLoadAccess<T>
Session. byId(String entityName)
Create anIdentifierLoadAccess
instance to retrieve an instance of the named entity type by its primary key.IdentifierLoadAccess<T>
IdentifierLoadAccess. disableFetchProfile(String profileName)
Customize the associations fetched by specifying a fetch profile that should be disabled during this operation.IdentifierLoadAccess<T>
IdentifierLoadAccess. enableFetchProfile(String profileName)
Customize the associations fetched by specifying a fetch profile that should be enabled during this operation.IdentifierLoadAccess<T>
IdentifierLoadAccess. with(CacheMode cacheMode)
Specify theCacheMode
to use when obtaining an entity.default IdentifierLoadAccess<T>
IdentifierLoadAccess. with(RootGraph<T> graph)
Deprecated.IdentifierLoadAccess<T>
IdentifierLoadAccess. with(RootGraph<T> graph, GraphSemantic semantic)
Customize the associations fetched by specifying an entity graph, and how it should be interpreted.IdentifierLoadAccess<T>
IdentifierLoadAccess. with(LockOptions lockOptions)
Specify the lock options to use when querying the database.default IdentifierLoadAccess<T>
IdentifierLoadAccess. withFetchGraph(RootGraph<T> graph)
Override the associations fetched by default by specifying the complete list of associations to be fetched as an entity graph.default IdentifierLoadAccess<T>
IdentifierLoadAccess. withLoadGraph(RootGraph<T> graph)
Augment the associations fetched by default by specifying a list of additional associations to be fetched as an entity graph.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)
-
Uses of IdentifierLoadAccess in org.hibernate.loader.internal
Classes in org.hibernate.loader.internal that implement IdentifierLoadAccess Modifier and Type Class Description class
IdentifierLoadAccessImpl<T>
Standard implementation of load-by-idMethods in org.hibernate.loader.internal that return IdentifierLoadAccess Modifier and Type Method Description IdentifierLoadAccess<T>
IdentifierLoadAccessImpl. disableFetchProfile(String profileName)
IdentifierLoadAccess<T>
IdentifierLoadAccessImpl. enableFetchProfile(String profileName)
protected IdentifierLoadAccess<?>
BaseNaturalIdLoadAccessImpl. getIdentifierLoadAccess()
IdentifierLoadAccess<T>
IdentifierLoadAccessImpl. with(CacheMode cacheMode)
IdentifierLoadAccess<T>
IdentifierLoadAccessImpl. with(RootGraph<T> graph, GraphSemantic semantic)
IdentifierLoadAccess<T>
IdentifierLoadAccessImpl. withReadOnly(boolean readOnly)
-