Uses of Class
org.hibernate.loader.custom.SQLQueryReturn

Packages that use SQLQueryReturn
org.hibernate.engine   
org.hibernate.engine.query   
org.hibernate.loader.custom   
 

Uses of SQLQueryReturn in org.hibernate.engine
 

Methods in org.hibernate.engine that return SQLQueryReturn
 SQLQueryReturn[] ResultSetMappingDefinition.getEntityQueryReturns()
           
 SQLQueryReturn[] NamedSQLQueryDefinition.getQueryReturns()
           
 

Methods in org.hibernate.engine with parameters of type SQLQueryReturn
 void ResultSetMappingDefinition.addEntityQueryReturn(SQLQueryReturn entityQueryReturn)
           
 

Constructors in org.hibernate.engine with parameters of type SQLQueryReturn
NamedSQLQueryDefinition(String query, SQLQueryReturn[] queryReturns, SQLQueryScalarReturn[] scalarReturns, List querySpaces, boolean cacheable, String cacheRegion, Integer timeout, Integer fetchSize, FlushMode flushMode, CacheMode cacheMode, boolean readOnly, String comment, Map parameterTypes, boolean callable)
           
NamedSQLQueryDefinition(String query, SQLQueryReturn[] queryReturns, SQLQueryScalarReturn[] scalarReturns, List querySpaces, boolean cacheable, String cacheRegion, Integer timeout, Integer fetchSize, FlushMode flushMode, Map parameterTypes, boolean callable)
          backward compatibility: to be removed after HA 3.2beta5
 

Uses of SQLQueryReturn in org.hibernate.engine.query
 

Methods in org.hibernate.engine.query that return SQLQueryReturn
 SQLQueryReturn[] NativeSQLQuerySpecification.getSqlQueryReturns()
           
 

Constructors in org.hibernate.engine.query with parameters of type SQLQueryReturn
NativeSQLQuerySpecification(String queryString, SQLQueryReturn[] sqlQueryReturns, SQLQueryScalarReturn[] sqlQueryScalarReturns, Collection querySpaces)
           
 

Uses of SQLQueryReturn in org.hibernate.loader.custom
 

Subclasses of SQLQueryReturn in org.hibernate.loader.custom
 class SQLQueryCollectionReturn
          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 SQLQueryJoinReturn
          Represents a return defined as part of a native sql query which names a fetched role.
 class SQLQueryRootReturn
          Represents a return defined as part of a native sql query which names a "root" entity.
 

Constructors in org.hibernate.loader.custom with parameters of type SQLQueryReturn
SQLCustomQuery(SQLQueryReturn[] queryReturns, SQLQueryScalarReturn[] scalarQueryReturns, String sqlQuery, Collection additionalQuerySpaces, SessionFactoryImplementor factory)
           
SQLQueryReturnProcessor(SQLQueryReturn[] queryReturns, SQLQueryScalarReturn[] scalarQueryReturns, SessionFactoryImplementor factory)