Package org.hibernate.stat
Interface NaturalIdStatistics
-
- All Superinterfaces:
CacheableDataStatistics,java.io.Serializable
public interface NaturalIdStatistics extends CacheableDataStatistics, java.io.Serializable
Statistics pertaining to the execution of the "natural id resolution" query.
-
-
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 longgetExecutionAvgTime()The average amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylonggetExecutionCount()Number of times (since last Statistics clearing) the "natural id resolution" query has been executedlonggetExecutionMaxTime()The maximum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" querylonggetExecutionMinTime()The minimum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query-
Methods inherited from interface org.hibernate.stat.CacheableDataStatistics
getCacheHitCount, getCacheMissCount, getCachePutCount, getCacheRegionName
-
-
-
-
Method Detail
-
getExecutionCount
long getExecutionCount()
Number of times (since last Statistics clearing) the "natural id resolution" query has been executed
-
getExecutionAvgTime
long getExecutionAvgTime()
The average amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-
getExecutionMaxTime
long getExecutionMaxTime()
The maximum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-
getExecutionMinTime
long getExecutionMinTime()
The minimum amount of time it takes (since last Statistics clearing) for the execution of this "natural id resolution" query
-
-