Package org.hibernate.stat
Interface CollectionStatistics
-
- All Superinterfaces:
CacheableDataStatistics
,Serializable
- All Known Implementing Classes:
CollectionStatisticsImpl
public interface CollectionStatistics extends CacheableDataStatistics, Serializable
Collection-related statistics.
-
-
Field Summary
-
Fields inherited from interface org.hibernate.stat.CacheableDataStatistics
NOT_CACHED_COUNT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getFetchCount()
Number of times (since last Statistics clearing) this collection has been fetchedlong
getLoadCount()
Number of times (since last Statistics clearing) this collection has been loadedlong
getRecreateCount()
Number of times (since last Statistics clearing) this collection has been recreated (rows potentially deleted and then rows (re-)inserted)long
getRemoveCount()
Number of times (since last Statistics clearing) this collection has been removedlong
getUpdateCount()
Number of times (since last Statistics clearing) this collection has been updated-
Methods inherited from interface org.hibernate.stat.CacheableDataStatistics
getCacheHitCount, getCacheMissCount, getCachePutCount, getCacheRegionName
-
-
-
-
Method Detail
-
getLoadCount
long getLoadCount()
Number of times (since last Statistics clearing) this collection has been loaded
-
getFetchCount
long getFetchCount()
Number of times (since last Statistics clearing) this collection has been fetched
-
getRecreateCount
long getRecreateCount()
Number of times (since last Statistics clearing) this collection has been recreated (rows potentially deleted and then rows (re-)inserted)
-
getRemoveCount
long getRemoveCount()
Number of times (since last Statistics clearing) this collection has been removed
-
getUpdateCount
long getUpdateCount()
Number of times (since last Statistics clearing) this collection has been updated
-
-