类 EntityStatisticsImpl
- java.lang.Object
-
- org.hibernate.stat.internal.AbstractCacheableDataStatistics
-
- org.hibernate.stat.internal.EntityStatisticsImpl
-
- 所有已实现的接口:
Serializable,CacheableDataStatistics,EntityStatistics
public class EntityStatisticsImpl extends AbstractCacheableDataStatistics implements EntityStatistics, Serializable
Entity related statistics- 作者:
- Alex Snaps
- 另请参阅:
- 序列化表格
-
-
字段概要
-
从接口继承的字段 org.hibernate.stat.CacheableDataStatistics
NOT_CACHED_COUNT
-
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 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 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
-
-
-
-
方法详细资料
-
getDeleteCount
public long getDeleteCount()
从接口复制的说明:EntityStatisticsNumber of times (since last Statistics clearing) this entity has been deleted- 指定者:
getDeleteCount在接口中EntityStatistics
-
getInsertCount
public long getInsertCount()
从接口复制的说明:EntityStatisticsNumber of times (since last Statistics clearing) this entity has been inserted- 指定者:
getInsertCount在接口中EntityStatistics
-
getLoadCount
public long getLoadCount()
从接口复制的说明:EntityStatisticsNumber of times (since last Statistics clearing) this entity has been loaded- 指定者:
getLoadCount在接口中EntityStatistics
-
getUpdateCount
public long getUpdateCount()
从接口复制的说明:EntityStatisticsNumber of times (since last Statistics clearing) this entity has been updated- 指定者:
getUpdateCount在接口中EntityStatistics
-
getFetchCount
public long getFetchCount()
从接口复制的说明:EntityStatisticsNumber of times (since last Statistics clearing) this entity has been fetched- 指定者:
getFetchCount在接口中EntityStatistics
-
getOptimisticFailureCount
public long getOptimisticFailureCount()
从接口复制的说明:EntityStatisticsNumber of times (since last Statistics clearing) this entity has experienced an optimistic lock failure.- 指定者:
getOptimisticFailureCount在接口中EntityStatistics
-
-