Uses of Interface
org.hibernate.engine.query.spi.sql.NativeSQLQueryReturn
-
Packages that use NativeSQLQueryReturn Package Description org.hibernate org.hibernate.engine org.hibernate.engine.query.spi.sql org.hibernate.engine.spi org.hibernate.loader.custom.sql org.hibernate.result.spi -
-
Uses of NativeSQLQueryReturn in org.hibernate
Methods in org.hibernate that return types with arguments of type NativeSQLQueryReturn Modifier and Type Method Description java.util.List<NativeSQLQueryReturn>
SQLQuery. getQueryReturns()
Deprecated.Retrieve the returns associated with this query. -
Uses of NativeSQLQueryReturn in org.hibernate.engine
Methods in org.hibernate.engine that return NativeSQLQueryReturn Modifier and Type Method Description NativeSQLQueryReturn[]
ResultSetMappingDefinition. getQueryReturns()
Methods in org.hibernate.engine with parameters of type NativeSQLQueryReturn Modifier and Type Method Description void
ResultSetMappingDefinition. addQueryReturn(NativeSQLQueryReturn queryReturn)
Adds a return. -
Uses of NativeSQLQueryReturn in org.hibernate.engine.query.spi.sql
Classes in org.hibernate.engine.query.spi.sql that implement NativeSQLQueryReturn Modifier and Type Class Description class
NativeSQLQueryCollectionReturn
Represents a return defined as part of a native sql query which names a collection role in the form {className}.{collectionRole}; it is used in defining a custom sql query for loading an entity's collection in non-fetching scenarios (i.e., loading the collection itself as the "root" of the result).class
NativeSQLQueryConstructorReturn
Describes aConstructorResult
class
NativeSQLQueryJoinReturn
Represents a return defined as part of a native sql query which names a fetched role.class
NativeSQLQueryNonScalarReturn
Represents the base information for a non-scalar return defined as part of a native sql query.class
NativeSQLQueryRootReturn
Represents a return defined as part of a native sql query which names a "root" entity.class
NativeSQLQueryScalarReturn
Describes a scalar return in a native SQL query.Methods in org.hibernate.engine.query.spi.sql that return NativeSQLQueryReturn Modifier and Type Method Description NativeSQLQueryReturn[]
NativeSQLQuerySpecification. getQueryReturns()
Constructors in org.hibernate.engine.query.spi.sql with parameters of type NativeSQLQueryReturn Constructor Description NativeSQLQuerySpecification(java.lang.String queryString, NativeSQLQueryReturn[] queryReturns, java.util.Collection querySpaces)
-
Uses of NativeSQLQueryReturn in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return NativeSQLQueryReturn Modifier and Type Method Description NativeSQLQueryReturn[]
NamedSQLQueryDefinition. getQueryReturns()
Methods in org.hibernate.engine.spi with parameters of type NativeSQLQueryReturn Modifier and Type Method Description void
NamedSQLQueryDefinition. addQueryReturns(NativeSQLQueryReturn[] queryReturnsToAdd)
NamedSQLQueryDefinitionBuilder
NamedSQLQueryDefinitionBuilder. setQueryReturns(NativeSQLQueryReturn[] queryReturns)
Method parameters in org.hibernate.engine.spi with type arguments of type NativeSQLQueryReturn Modifier and Type Method Description NamedSQLQueryDefinitionBuilder
NamedSQLQueryDefinitionBuilder. setQueryReturns(java.util.List<NativeSQLQueryReturn> queryReturns)
Constructors in org.hibernate.engine.spi with parameters of type NativeSQLQueryReturn Constructor Description NamedSQLQueryDefinition(java.lang.String name, java.lang.String query, NativeSQLQueryReturn[] queryReturns, java.util.List<java.lang.String> querySpaces, boolean cacheable, java.lang.String cacheRegion, java.lang.Integer timeout, java.lang.Integer fetchSize, FlushMode flushMode, CacheMode cacheMode, boolean readOnly, java.lang.String comment, java.util.Map parameterTypes, boolean callable)
Deprecated.UseNamedSQLQueryDefinitionBuilder
instead. -
Uses of NativeSQLQueryReturn in org.hibernate.loader.custom.sql
Constructors in org.hibernate.loader.custom.sql with parameters of type NativeSQLQueryReturn Constructor Description SQLCustomQuery(java.lang.String sqlQuery, NativeSQLQueryReturn[] queryReturns, java.util.Collection additionalQuerySpaces, SessionFactoryImplementor factory)
SQLQueryReturnProcessor(NativeSQLQueryReturn[] queryReturns, SessionFactoryImplementor factory)
-
Uses of NativeSQLQueryReturn in org.hibernate.result.spi
Methods in org.hibernate.result.spi that return NativeSQLQueryReturn Modifier and Type Method Description NativeSQLQueryReturn[]
ResultContext. getQueryReturns()
-