Uses of Interface
org.hibernate.SimpleNaturalIdLoadAccess
-
Packages that use SimpleNaturalIdLoadAccess 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.internal An internal package containing implementations of central Hibernate APIs, mostly defined inorg.hibernate
.org.hibernate.loader.internal -
-
Uses of SimpleNaturalIdLoadAccess in org.hibernate
Methods in org.hibernate that return SimpleNaturalIdLoadAccess Modifier and Type Method Description <T> SimpleNaturalIdLoadAccess<T>
Session. bySimpleNaturalId(Class<T> entityClass)
Create aSimpleNaturalIdLoadAccess
instance to retrieve the specified entity by its simple (single attribute)natural id
.<T> SimpleNaturalIdLoadAccess<T>
Session. bySimpleNaturalId(String entityName)
Create aSimpleNaturalIdLoadAccess
instance to retrieve the specified entity by itsnatural id
.SimpleNaturalIdLoadAccess<T>
SimpleNaturalIdLoadAccess. setSynchronizationEnabled(boolean enabled)
For entities with mutable natural ids, should Hibernate perform "synchronization" prior to performing lookups? The default is to perform "synchronization" (for correctness).SimpleNaturalIdLoadAccess<T>
SimpleNaturalIdLoadAccess. with(LockOptions lockOptions)
Specify theLockOptions
to use when retrieving the entity. -
Uses of SimpleNaturalIdLoadAccess in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return SimpleNaturalIdLoadAccess Modifier and Type Method Description <T> SimpleNaturalIdLoadAccess<T>
SessionDelegatorBaseImpl. bySimpleNaturalId(Class<T> entityClass)
<T> SimpleNaturalIdLoadAccess<T>
SessionDelegatorBaseImpl. bySimpleNaturalId(String entityName)
<T> SimpleNaturalIdLoadAccess<T>
SessionLazyDelegator. bySimpleNaturalId(Class<T> entityClass)
<T> SimpleNaturalIdLoadAccess<T>
SessionLazyDelegator. bySimpleNaturalId(String entityName)
-
Uses of SimpleNaturalIdLoadAccess in org.hibernate.internal
Methods in org.hibernate.internal that return SimpleNaturalIdLoadAccess Modifier and Type Method Description <T> SimpleNaturalIdLoadAccess<T>
SessionImpl. bySimpleNaturalId(Class<T> entityClass)
<T> SimpleNaturalIdLoadAccess<T>
SessionImpl. bySimpleNaturalId(String entityName)
-
Uses of SimpleNaturalIdLoadAccess in org.hibernate.loader.internal
Classes in org.hibernate.loader.internal that implement SimpleNaturalIdLoadAccess Modifier and Type Class Description class
SimpleNaturalIdLoadAccessImpl<T>
-