Uses of Interface
org.hibernate.query.NativeQuery.RootReturn
-
Packages that use NativeQuery.RootReturn Package Description org.hibernate.query Everything related to HQL/JPQL, native SQL, and criteria queries.org.hibernate.query.results.complete Support for immutable result/fetch builder graph nodes built from static sources such as JPA'sSqlResultSetMapping
or `hbm.xml` mapping<resultset/>
.org.hibernate.query.results.dynamic Support for mutable result/fetch builder graphs nodes built dynamically via Hibernate'sNativeQuery
APIs -
-
Uses of NativeQuery.RootReturn in org.hibernate.query
Methods in org.hibernate.query that return NativeQuery.RootReturn Modifier and Type Method Description NativeQuery.RootReturn
NativeQuery.RootReturn. addIdColumnAliases(String... aliases)
NativeQuery.RootReturn
NativeQuery.RootReturn. addProperty(String propertyName, String columnAlias)
Add a simple property-to-one-column mapping.NativeQuery.RootReturn
NativeQuery. addRoot(String tableAlias, Class entityType)
Add a new root return mapping, returning aNativeQuery.RootReturn
to allow further definition.NativeQuery.RootReturn
NativeQuery. addRoot(String tableAlias, String entityName)
Add a new root return mapping, returning aNativeQuery.RootReturn
to allow further definition.NativeQuery.RootReturn
NativeQuery.RootReturn. setDiscriminatorAlias(String columnAlias)
Name the column alias that identifies the entity's discriminator.NativeQuery.RootReturn
NativeQuery.RootReturn. setLockMode(LockMode lockMode)
Set the lock mode for this return. -
Uses of NativeQuery.RootReturn in org.hibernate.query.results.complete
Classes in org.hibernate.query.results.complete that implement NativeQuery.RootReturn Modifier and Type Class Description class
CompleteResultBuilderEntityStandard
Methods in org.hibernate.query.results.complete that return NativeQuery.RootReturn Modifier and Type Method Description NativeQuery.RootReturn
CompleteResultBuilderEntityStandard. addIdColumnAliases(String... aliases)
NativeQuery.RootReturn
CompleteResultBuilderEntityStandard. addProperty(String propertyName, String columnAlias)
NativeQuery.RootReturn
CompleteResultBuilderEntityStandard. setDiscriminatorAlias(String columnAlias)
NativeQuery.RootReturn
CompleteResultBuilderEntityStandard. setLockMode(LockMode lockMode)
-
Uses of NativeQuery.RootReturn in org.hibernate.query.results.dynamic
Classes in org.hibernate.query.results.dynamic that implement NativeQuery.RootReturn Modifier and Type Class Description class
DynamicResultBuilderEntityCalculated
An entity-valued DynamicResultBuilder for cases when the user has not supplied specific column -> attribute mappings.class
DynamicResultBuilderEntityStandard
Methods in org.hibernate.query.results.dynamic that return NativeQuery.RootReturn Modifier and Type Method Description NativeQuery.RootReturn
DynamicResultBuilderEntityCalculated. addIdColumnAliases(String... aliases)
NativeQuery.RootReturn
DynamicResultBuilderEntityStandard. addIdColumnAliases(String... aliases)
NativeQuery.RootReturn
DynamicResultBuilderEntityCalculated. addProperty(String propertyName, String columnAlias)
NativeQuery.RootReturn
DynamicResultBuilderEntityCalculated. setDiscriminatorAlias(String columnAlias)
NativeQuery.RootReturn
DynamicResultBuilderEntityCalculated. setLockMode(LockMode lockMode)
-