Package org.hibernate.stat
Interface EntityStatistics
-
- All Superinterfaces:
CacheableDataStatistics
,Serializable
- All Known Implementing Classes:
EntityStatisticsImpl
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 long
getDeleteCount()
Number of times (since last Statistics clearing) this entity has been deletedlong
getFetchCount()
Number of times (since last Statistics clearing) this entity has been fetchedlong
getInsertCount()
Number of times (since last Statistics clearing) this entity has been insertedlong
getLoadCount()
Number of times (since last Statistics clearing) this entity has been loadedlong
getOptimisticFailureCount()
Number of times (since last Statistics clearing) this entity has experienced an optimistic lock failure.long
getUpdateCount()
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.
-
-