| org.hibernate.loader.custom |
|
This package defines a framework for custom loaders that accept
handwritten SQL
|
| Java Source File Name | Type | Comment |
| CollectionFetchReturn.java | Class | Spefically a fetch return that refers to a collection association. |
| CollectionReturn.java | Class | Represents a return which names a collection role; it
is used in defining a custom query for loading an entity's
collection in non-fetching scenarios (i.e., loading the collection
itself as the "root" of the result). |
| ColumnCollectionAliases.java | Class | CollectionAliases that uses columnnames instead of generated aliases. |
| CustomLoader.java | Class | Extension point for loaders which use a SQL result set with "unexpected" column aliases. |
| CustomQuery.java | Interface | Extension point allowing any SQL query with named and positional parameters
to be executed by Hibernate, returning managed entities, collections and
simple scalar values. |
| EntityFetchReturn.java | Class | Spefically a fetch return that refers to an entity association. |
| FetchReturn.java | Class | Represents a return which names a fetched association. |
| NonScalarReturn.java | Class | Represents some non-scalar (entity/collection) return within the query result. |
| Return.java | Interface | Represents a return in a custom query. |
| RootReturn.java | Class | Represents a return which names a "root" entity. |
| ScalarReturn.java | Class | Represent a scalar (aka simple value) return within a query result. |
| SQLCustomQuery.java | Class | Implements Hibernate's built-in support for
native SQL queries. |
| SQLQueryCollectionReturn.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). |
| SQLQueryJoinReturn.java | Class | Represents a return defined as part of a native sql query which
names a fetched role. |
| SQLQueryParser.java | Class | |
| SQLQueryReturn.java | Class | Represents the base information for a return defined as part of
a native sql query. |
| SQLQueryReturnProcessor.java | Class | |
| SQLQueryRootReturn.java | Class | Represents a return defined as part of a native sql query which
names a "root" entity. |
| SQLQueryScalarReturn.java | Class | |