类 CollectionStatisticsImpl
- java.lang.Object
-
- org.hibernate.stat.internal.AbstractCacheableDataStatistics
-
- org.hibernate.stat.internal.CollectionStatisticsImpl
-
- 所有已实现的接口:
Serializable,CacheableDataStatistics,CollectionStatistics
public class CollectionStatisticsImpl extends AbstractCacheableDataStatistics implements CollectionStatistics, Serializable
Collection related statistics- 作者:
- Alex Snaps
- 另请参阅:
- 序列化表格
-
-
字段概要
-
从接口继承的字段 org.hibernate.stat.CacheableDataStatistics
NOT_CACHED_COUNT
-
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 longgetFetchCount()Number of times (since last Statistics clearing) this collection has been fetchedlonggetLoadCount()Number of times (since last Statistics clearing) this collection has been loadedlonggetRecreateCount()Number of times (since last Statistics clearing) this collection has been recreated (rows potentially deleted and then rows (re-)inserted)longgetRemoveCount()Number of times (since last Statistics clearing) this collection has been removedlonggetUpdateCount()Number of times (since last Statistics clearing) this collection has been updatedStringtoString()-
从类继承的方法 org.hibernate.stat.internal.AbstractCacheableDataStatistics
appendCacheStats, getCacheHitCount, getCacheMissCount, getCachePutCount, getCacheRegionName, incrementCacheHitCount, incrementCacheMissCount, incrementCachePutCount
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
从接口继承的方法 org.hibernate.stat.CacheableDataStatistics
getCacheHitCount, getCacheMissCount, getCachePutCount, getCacheRegionName
-
-
-
-
方法详细资料
-
getLoadCount
public long getLoadCount()
从接口复制的说明:CollectionStatisticsNumber of times (since last Statistics clearing) this collection has been loaded- 指定者:
getLoadCount在接口中CollectionStatistics
-
getFetchCount
public long getFetchCount()
从接口复制的说明:CollectionStatisticsNumber of times (since last Statistics clearing) this collection has been fetched- 指定者:
getFetchCount在接口中CollectionStatistics
-
getRecreateCount
public long getRecreateCount()
从接口复制的说明:CollectionStatisticsNumber of times (since last Statistics clearing) this collection has been recreated (rows potentially deleted and then rows (re-)inserted)- 指定者:
getRecreateCount在接口中CollectionStatistics
-
getRemoveCount
public long getRemoveCount()
从接口复制的说明:CollectionStatisticsNumber of times (since last Statistics clearing) this collection has been removed- 指定者:
getRemoveCount在接口中CollectionStatistics
-
getUpdateCount
public long getUpdateCount()
从接口复制的说明:CollectionStatisticsNumber of times (since last Statistics clearing) this collection has been updated- 指定者:
getUpdateCount在接口中CollectionStatistics
-
-