Uses of Interface
org.hibernate.NaturalIdLoadAccess
-
Packages that use NaturalIdLoadAccess Package Description org.hibernate This package defines the central Hibernate APIs, beginning withSessionandSessionFactory.org.hibernate.engine.spi -
-
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 aNaturalIdLoadAccessinstance to retrieve the specified entity by its natural id.<T> NaturalIdLoadAccess<T>Session. byNaturalId(String entityName)Create aNaturalIdLoadAccessinstance to retrieve the specified entity by its natural id.NaturalIdLoadAccess<T>NaturalIdLoadAccess. 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).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 theLockOptionsto 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)
-