接口 FetchStats
-
public interface FetchStatsContract used to report collected information about fetches. For now that is only whether there were subselect fetches found- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 Set<CollectionAttributeFetch>getJoinedBagAttributeFetches()Returns a set of bag attributes that are join-fetched.booleanhasSubselectFetches()Were any subselect fetches encountered?
-
-
-
方法详细资料
-
hasSubselectFetches
boolean hasSubselectFetches()
Were any subselect fetches encountered?- 返回:
trueif subselect fetches were encountered;falseotherwise.
-
getJoinedBagAttributeFetches
Set<CollectionAttributeFetch> getJoinedBagAttributeFetches()
Returns a set of bag attributes that are join-fetched.- 返回:
- a set of bag attributes that are join-fetched.
-
-