Package org.hibernate.stat
Interface EntityStatistics
-
- All Superinterfaces:
CacheableDataStatistics,Serializable
public interface EntityStatistics extends CacheableDataStatistics, Serializable
Entity 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 longgetDeleteCount()Number of times (since last Statistics clearing) this entity has been deletedlonggetFetchCount()Number of times (since last Statistics clearing) this entity has been fetchedlonggetInsertCount()Number of times (since last Statistics clearing) this entity has been insertedlonggetLoadCount()Number of times (since last Statistics clearing) this entity has been loadedlonggetOptimisticFailureCount()Number of times (since last Statistics clearing) this entity has experienced an optimistic lock failure.longgetUpdateCount()Number of times (since last Statistics clearing) this entity has been updated-
Methods inherited from interface org.hibernate.stat.CacheableDataStatistics
getCacheHitCount, getCacheMissCount, getCachePutCount, getCacheRegionName
-
-
-
-
Method Detail
-
getDeleteCount
long getDeleteCount()
Number of times (since last Statistics clearing) this entity has been deleted
-
getInsertCount
long getInsertCount()
Number of times (since last Statistics clearing) this entity has been inserted
-
getUpdateCount
long getUpdateCount()
Number of times (since last Statistics clearing) this entity has been updated
-
getLoadCount
long getLoadCount()
Number of times (since last Statistics clearing) this entity has been loaded
-
getFetchCount
long getFetchCount()
Number of times (since last Statistics clearing) this entity has been fetched
-
getOptimisticFailureCount
long getOptimisticFailureCount()
Number of times (since last Statistics clearing) this entity has experienced an optimistic lock failure.
-
-