类 SessionStatisticsImpl
- java.lang.Object
-
- org.hibernate.stat.internal.SessionStatisticsImpl
-
- 所有已实现的接口:
SessionStatistics
public class SessionStatisticsImpl extends Object implements SessionStatistics
- 作者:
- Gavin King
-
-
构造器概要
构造器 构造器 说明 SessionStatisticsImpl(SessionImplementor session)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 intgetCollectionCount()Get the number of collection instances associated with the sessionSetgetCollectionKeys()Get the set of all CollectionKeysintgetEntityCount()Get the number of entity instances associated with the sessionSetgetEntityKeys()Get the set of all EntityKeysStringtoString()
-
-
-
构造器详细资料
-
SessionStatisticsImpl
public SessionStatisticsImpl(SessionImplementor session)
-
-
方法详细资料
-
getEntityCount
public int getEntityCount()
从接口复制的说明:SessionStatisticsGet the number of entity instances associated with the session- 指定者:
getEntityCount在接口中SessionStatistics
-
getCollectionCount
public int getCollectionCount()
从接口复制的说明:SessionStatisticsGet the number of collection instances associated with the session- 指定者:
getCollectionCount在接口中SessionStatistics
-
getEntityKeys
public Set getEntityKeys()
从接口复制的说明:SessionStatisticsGet the set of all EntityKeys- 指定者:
getEntityKeys在接口中SessionStatistics- 另请参阅:
EntityKey
-
getCollectionKeys
public Set getCollectionKeys()
从接口复制的说明:SessionStatisticsGet the set of all CollectionKeys- 指定者:
getCollectionKeys在接口中SessionStatistics- 另请参阅:
CollectionKey
-
-