Uses of Interface
org.hibernate.NaturalIdLoadAccess
-
Packages that use NaturalIdLoadAccess 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 NaturalIdLoadAccess in org.hibernate
Methods in org.hibernate that return NaturalIdLoadAccess Modifier and Type Method Description <T> NaturalIdLoadAccess<T>
Session. byNaturalId(Class<T> entityClass)
Create aNaturalIdLoadAccess
instance to retrieve the specified entity by its natural id.<T> NaturalIdLoadAccess<T>
Session. byNaturalId(String entityName)
Create aNaturalIdLoadAccess
instance to retrieve the specified entity by its natural id.NaturalIdLoadAccess<T>
NaturalIdLoadAccess. setSynchronizationEnabled(boolean enabled)
For entities with mutable natural ids, should natural ids be synchronized prior to performing a lookup? The default, for correctness, is to synchronize.NaturalIdLoadAccess<T>
NaturalIdLoadAccess. using(Object... mappings)
Set multiple natural-id attribute values at once.NaturalIdLoadAccess<T>
NaturalIdLoadAccess. using(String attributeName, Object value)
Add a NaturalId attribute value.NaturalIdLoadAccess<T>
NaturalIdLoadAccess. with(LockOptions lockOptions)
Specify theLockOptions
to use when retrieving the entity. -
Uses of NaturalIdLoadAccess in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return NaturalIdLoadAccess Modifier and Type Method Description <T> NaturalIdLoadAccess<T>
SessionDelegatorBaseImpl. byNaturalId(Class<T> entityClass)
<T> NaturalIdLoadAccess<T>
SessionDelegatorBaseImpl. byNaturalId(String entityName)
<T> NaturalIdLoadAccess<T>
SessionLazyDelegator. byNaturalId(Class<T> entityClass)
<T> NaturalIdLoadAccess<T>
SessionLazyDelegator. byNaturalId(String entityName)
-
Uses of NaturalIdLoadAccess in org.hibernate.internal
Methods in org.hibernate.internal that return NaturalIdLoadAccess Modifier and Type Method Description <T> NaturalIdLoadAccess<T>
SessionImpl. byNaturalId(Class<T> entityClass)
<T> NaturalIdLoadAccess<T>
SessionImpl. byNaturalId(String entityName)
-
Uses of NaturalIdLoadAccess in org.hibernate.loader.internal
Classes in org.hibernate.loader.internal that implement NaturalIdLoadAccess Modifier and Type Class Description class
NaturalIdLoadAccessImpl<T>
Methods in org.hibernate.loader.internal that return NaturalIdLoadAccess Modifier and Type Method Description NaturalIdLoadAccess<T>
NaturalIdLoadAccessImpl. using(Object... mappings)
NaturalIdLoadAccess<T>
NaturalIdLoadAccessImpl. using(String attributeName, Object value)
-