站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 2.1.8 正式版 API 英文文档

Uses of Class net.sf.hibernate.FetchMode (Hibernate API Documentation) - Hibernate 2.1.8 正式版 API 英文文档


Uses of Class
net.sf.hibernate.FetchMode

Packages that use FetchMode
net.sf.hibernate   
net.sf.hibernate.impl   
 

Uses of FetchMode in net.sf.hibernate
 

Fields in net.sf.hibernate declared as FetchMode
static FetchMode FetchMode.LAZY
          Fetch lazily.
static FetchMode FetchMode.EAGER
          Fetch eagerly, using an outer join.
static FetchMode FetchMode.DEFAULT
          Default to the setting configured in the mapping file.
 

Methods in net.sf.hibernate with parameters of type FetchMode
 Criteria Criteria.setFetchMode(String associationPath, FetchMode mode)
          Specify an association fetching strategy for a one-to-many, many-to-one or one-to-one association, or for a collection of values.
 

Uses of FetchMode in net.sf.hibernate.impl
 

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

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