Record Class HibernateCollectionStatisticsInfo
java.lang.Object
java.lang.Record
io.micronaut.controlpanel.panels.hibernate.model.HibernateCollectionStatisticsInfo
- Record Components:
loadCount- collection load countfetchCount- collection fetch countupdateCount- collection update countremoveCount- collection remove countrecreateCount- collection recreate countcacheRegionName- cache region namecacheHitCount- cache hit countcacheMissCount- cache miss countcachePutCount- cache put count
-
Constructor Summary
ConstructorsConstructorDescriptionHibernateCollectionStatisticsInfo(long loadCount, long fetchCount, long updateCount, long removeCount, long recreateCount, String cacheRegionName, long cacheHitCount, long cacheMissCount, long cachePutCount) Creates an instance of aHibernateCollectionStatisticsInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionlongReturns the value of thecacheHitCountrecord component.longReturns the value of thecacheMissCountrecord component.longReturns the value of thecachePutCountrecord component.Returns the value of thecacheRegionNamerecord component.final booleanIndicates whether some other object is "equal to" this one.longReturns the value of thefetchCountrecord component.final inthashCode()Returns a hash code value for this object.longReturns the value of theloadCountrecord component.longReturns the value of therecreateCountrecord component.longReturns the value of theremoveCountrecord component.final StringtoString()Returns a string representation of this record class.longReturns the value of theupdateCountrecord component.
-
Constructor Details
-
HibernateCollectionStatisticsInfo
public HibernateCollectionStatisticsInfo(long loadCount, long fetchCount, long updateCount, long removeCount, long recreateCount, String cacheRegionName, long cacheHitCount, long cacheMissCount, long cachePutCount) Creates an instance of aHibernateCollectionStatisticsInforecord class.- Parameters:
loadCount- the value for theloadCountrecord componentfetchCount- the value for thefetchCountrecord componentupdateCount- the value for theupdateCountrecord componentremoveCount- the value for theremoveCountrecord componentrecreateCount- the value for therecreateCountrecord componentcacheRegionName- the value for thecacheRegionNamerecord componentcacheHitCount- the value for thecacheHitCountrecord componentcacheMissCount- the value for thecacheMissCountrecord componentcachePutCount- the value for thecachePutCountrecord component
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
loadCount
-
fetchCount
public long fetchCount()Returns the value of thefetchCountrecord component.- Returns:
- the value of the
fetchCountrecord component
-
updateCount
public long updateCount()Returns the value of theupdateCountrecord component.- Returns:
- the value of the
updateCountrecord component
-
removeCount
public long removeCount()Returns the value of theremoveCountrecord component.- Returns:
- the value of the
removeCountrecord component
-
recreateCount
public long recreateCount()Returns the value of therecreateCountrecord component.- Returns:
- the value of the
recreateCountrecord component
-
cacheRegionName
Returns the value of thecacheRegionNamerecord component.- Returns:
- the value of the
cacheRegionNamerecord component
-
cacheHitCount
public long cacheHitCount()Returns the value of thecacheHitCountrecord component.- Returns:
- the value of the
cacheHitCountrecord component
-
cacheMissCount
public long cacheMissCount()Returns the value of thecacheMissCountrecord component.- Returns:
- the value of the
cacheMissCountrecord component
-
cachePutCount
public long cachePutCount()Returns the value of thecachePutCountrecord component.- Returns:
- the value of the
cachePutCountrecord component
-