Package org.hibernate.stat
Interface CollectionStatistics
- All Superinterfaces:
CacheableDataStatistics,Serializable
- All Known Implementing Classes:
CollectionStatisticsImpl
public interfaceCollectionStatisticsextendsCacheableDataStatistics,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 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 updatedMethods 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