org.hibernate.engine.query.sql |
|
Java Source File Name | Type | Comment |
NativeSQLQueryCollectionReturn.java | Class | 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). |
NativeSQLQueryJoinReturn.java | Class | Represents a return defined as part of a native sql query which
names a fetched role. |
NativeSQLQueryNonScalarReturn.java | Class | Represents the base information for a non-scalar return defined as part of
a native sql query. |
NativeSQLQueryReturn.java | Interface | Describes a return in a native SQL query. |
NativeSQLQueryRootReturn.java | Class | Represents a return defined as part of a native sql query which
names a "root" entity. |
NativeSQLQueryScalarReturn.java | Class | Describes a scalar return in a native SQL query. |
NativeSQLQuerySpecification.java | Class | Defines the specification or blue-print for a native-sql query.
Essentially a simple struct containing the information needed to "translate"
a native-sql query and cache that translated representation. |