Uses of Class
org.hibernate.loader.Loader

Packages that use Loader
org.hibernate.hql.classic   
org.hibernate.impl   
org.hibernate.loader   
org.hibernate.loader.collection   
org.hibernate.loader.criteria   
org.hibernate.loader.custom   
org.hibernate.loader.entity   
org.hibernate.loader.hql   
 

Uses of Loader in org.hibernate.hql.classic
 

Subclasses of Loader in org.hibernate.hql.classic
 class QueryTranslatorImpl
          An instance of QueryTranslator translates a Hibernate query string to SQL.
 

Uses of Loader in org.hibernate.impl
 

Methods in org.hibernate.impl that return Loader
protected  Loader AbstractScrollableResults.getLoader()
           
 

Constructors in org.hibernate.impl with parameters of type Loader
FetchingScrollableResultsImpl(ResultSet rs, PreparedStatement ps, SessionImplementor sess, Loader loader, QueryParameters queryParameters, Type[] types, HolderInstantiator holderInstantiator)
           
ScrollableResultsImpl(ResultSet rs, PreparedStatement ps, SessionImplementor sess, Loader loader, QueryParameters queryParameters, Type[] types, HolderInstantiator holderInstantiator)
           
AbstractScrollableResults(ResultSet rs, PreparedStatement ps, SessionImplementor sess, Loader loader, QueryParameters queryParameters, Type[] types, HolderInstantiator holderInstantiator)
           
 

Uses of Loader in org.hibernate.loader
 

Subclasses of Loader in org.hibernate.loader
 class BasicLoader
          Uses the default mapping from property to result set column alias defined by the entities' persisters.
 class OuterJoinLoader
          Implements logic for walking a tree of associated classes.
 

Uses of Loader in org.hibernate.loader.collection
 

Subclasses of Loader in org.hibernate.loader.collection
 class BasicCollectionLoader
          Loads a collection of values or a many-to-many association.
 class CollectionLoader
          Superclass for loaders that initialize collections
 class OneToManyLoader
          Loads one-to-many associations

The collection persister must implement QueryableCOllection.
 class SubselectCollectionLoader
          Implements subselect fetching for a collection
 class SubselectOneToManyLoader
          Implements subselect fetching for a one to many association
 

Constructors in org.hibernate.loader.collection with parameters of type Loader
BatchingCollectionInitializer(CollectionPersister collPersister, int[] batchSizes, Loader[] loaders)
           
 

Uses of Loader in org.hibernate.loader.criteria
 

Subclasses of Loader in org.hibernate.loader.criteria
 class CriteriaLoader
          A Loader for Criteria queries.
 

Uses of Loader in org.hibernate.loader.custom
 

Subclasses of Loader in org.hibernate.loader.custom
 class CustomLoader
          Extension point for loaders which use a SQL result set with "unexpected" column aliases.
 

Uses of Loader in org.hibernate.loader.entity
 

Subclasses of Loader in org.hibernate.loader.entity
 class AbstractEntityLoader
           
 class CascadeEntityLoader
           
 class CollectionElementLoader
           
 class EntityLoader
          Loads an entity instance using outerjoin fetching to fetch associated entities.
 

Constructors in org.hibernate.loader.entity with parameters of type Loader
BatchingEntityLoader(EntityPersister persister, int[] batchSizes, Loader[] loaders)
           
 

Uses of Loader in org.hibernate.loader.hql
 

Subclasses of Loader in org.hibernate.loader.hql
 class QueryLoader
          A delegate that implements the Loader part of QueryTranslator.