Uses of Class
org.hibernate.FetchMode

Packages that use FetchMode
org.hibernate   
org.hibernate.criterion   
org.hibernate.impl   
org.hibernate.loader   
org.hibernate.loader.collection   
org.hibernate.loader.criteria   
org.hibernate.loader.entity   
org.hibernate.mapping   
org.hibernate.persister.collection   
org.hibernate.persister.entity   
org.hibernate.type   
 

Uses of FetchMode in org.hibernate
 

Fields in org.hibernate declared as FetchMode
static FetchMode FetchMode.DEFAULT
          Default to the setting configured in the mapping file.
static FetchMode FetchMode.EAGER
          Deprecated. use FetchMode.JOIN
static FetchMode FetchMode.JOIN
          Fetch using an outer join.
static FetchMode FetchMode.LAZY
          Deprecated. use FetchMode.SELECT
static FetchMode FetchMode.SELECT
          Fetch eagerly, using a separate select.
 

Methods in org.hibernate with parameters of type FetchMode
 Criteria Criteria.setFetchMode(String associationPath, FetchMode mode)
          Specify an association fetching strategy for an association or a collection of values.
 

Uses of FetchMode in org.hibernate.criterion
 

Methods in org.hibernate.criterion with parameters of type FetchMode
 DetachedCriteria DetachedCriteria.setFetchMode(String associationPath, FetchMode mode)
           
 

Uses of FetchMode in org.hibernate.impl
 

Methods in org.hibernate.impl that return FetchMode
 FetchMode CriteriaImpl.getFetchMode(String path)
           
 

Methods in org.hibernate.impl with parameters of type FetchMode
 Criteria CriteriaImpl.setFetchMode(String associationPath, FetchMode mode)
           
 Criteria CriteriaImpl.Subcriteria.setFetchMode(String associationPath, FetchMode mode)
           
 

Uses of FetchMode in org.hibernate.loader
 

Methods in org.hibernate.loader with parameters of type FetchMode
protected  int JoinWalker.getJoinType(AssociationType type, FetchMode config, String path, String lhsTable, String[] lhsColumns, boolean nullable, int currentDepth, CascadeStyle cascadeStyle)
          Get the join type (inner, outer, etc) or -1 if the association should not be joined.
protected  boolean AbstractEntityJoinWalker.isJoinedFetchEnabled(AssociationType type, FetchMode config, CascadeStyle cascadeStyle)
          The superclass deliberately excludes collections
protected  boolean JoinWalker.isJoinedFetchEnabled(AssociationType type, FetchMode config, CascadeStyle cascadeStyle)
          Override on subclasses to enable or suppress joining of certain association types
protected  boolean JoinWalker.isJoinedFetchEnabledInMapping(FetchMode config, AssociationType type)
          Does the mapping, and Hibernate default semantics, specify that this association should be fetched by outer joining
 

Uses of FetchMode in org.hibernate.loader.collection
 

Methods in org.hibernate.loader.collection with parameters of type FetchMode
protected  int BasicCollectionJoinWalker.getJoinType(AssociationType type, FetchMode config, String path, Set visitedAssociations, String lhsTable, String[] lhsColumns, boolean nullable, int currentDepth)
          We can use an inner join for first many-to-many association
 

Uses of FetchMode in org.hibernate.loader.criteria
 

Methods in org.hibernate.loader.criteria with parameters of type FetchMode
protected  int CriteriaJoinWalker.getJoinType(AssociationType type, FetchMode config, String path, String lhsTable, String[] lhsColumns, boolean nullable, int currentDepth, CascadeStyle cascadeStyle)
           
 

Uses of FetchMode in org.hibernate.loader.entity
 

Methods in org.hibernate.loader.entity with parameters of type FetchMode
protected  boolean CascadeEntityJoinWalker.isJoinedFetchEnabled(AssociationType type, FetchMode config, CascadeStyle cascadeStyle)
           
protected  boolean EntityJoinWalker.isJoinedFetchEnabled(AssociationType type, FetchMode config, CascadeStyle cascadeStyle)
          Disable outer join fetching if this loader obtains an upgrade lock mode
 

Uses of FetchMode in org.hibernate.mapping
 

Methods in org.hibernate.mapping that return FetchMode
 FetchMode Collection.getFetchMode()
           
 FetchMode Fetchable.getFetchMode()
           
 FetchMode OneToMany.getFetchMode()
           
 FetchMode SimpleValue.getFetchMode()
           
 FetchMode ToOne.getFetchMode()
           
 FetchMode Value.getFetchMode()
           
 

Methods in org.hibernate.mapping with parameters of type FetchMode
 void Collection.setFetchMode(FetchMode fetchMode)
           
 void Fetchable.setFetchMode(FetchMode joinedFetch)
           
 void ToOne.setFetchMode(FetchMode fetchMode)
           
 

Uses of FetchMode in org.hibernate.persister.collection
 

Methods in org.hibernate.persister.collection that return FetchMode
 FetchMode AbstractCollectionPersister.getFetchMode()
           
 FetchMode QueryableCollection.getFetchMode()
          Should we load this collection role by outerjoining?
 

Uses of FetchMode in org.hibernate.persister.entity
 

Methods in org.hibernate.persister.entity that return FetchMode
 FetchMode AbstractEntityPersister.getFetchMode(int i)
           
 FetchMode OuterJoinLoadable.getFetchMode(int i)
          May this (subclass closure) property be fetched using an SQL outerjoin?
 

Uses of FetchMode in org.hibernate.type
 

Methods in org.hibernate.type that return FetchMode
 FetchMode AbstractComponentType.getFetchMode(int i)
           
 FetchMode AnyType.getFetchMode(int i)
           
 FetchMode ComponentType.getFetchMode(int i)
           
 FetchMode CompositeCustomType.getFetchMode(int i)
           
 

Constructors in org.hibernate.type with parameters of type FetchMode
ComponentType(String[] propertyNames, Type[] propertyTypes, boolean[] nullabilities, FetchMode[] joinedFetch, CascadeStyle[] cascade, boolean key, TuplizerLookup tuplizers)
           
EmbeddedComponentType(String[] propertyNames, Type[] propertyTypes, boolean[] nullabilities, FetchMode[] joinedFetch, CascadeStyle[] cascade, boolean key, TuplizerLookup tuplizers)