Package org.apache.commons.jcs3.admin
Class CacheRegionInfo
java.lang.Object
org.apache.commons.jcs3.admin.CacheRegionInfo
Stores info on a cache region for the template
- 
Constructor SummaryConstructorsConstructorDescriptionCacheRegionInfo(String cacheName, int cacheSize, String cacheStatus, String cacheStatistics, long hitCountRam, long hitCountAux, long missCountNotFound, long missCountExpired, long byteCount) Parameterized constructor
- 
Method SummaryModifier and TypeMethodDescriptionlongintReturn the statistics for the region.longlonglonglongtoString()
- 
Constructor Details- 
CacheRegionInfo@ConstructorProperties({"cacheName","cacheSize","cacheStatus","cacheStatistics","hitCountRam","hitCountAux","missCountNotFound","missCountExpired","byteCount"}) public CacheRegionInfo(String cacheName, int cacheSize, String cacheStatus, String cacheStatistics, long hitCountRam, long hitCountAux, long missCountNotFound, long missCountExpired, long byteCount) Parameterized constructor- Parameters:
- cacheName- The name of the cache region
- cacheSize- The size of the cache region
- cacheStatus- The status of the cache region
- cacheStatistics- The statistics of the cache region
- hitCountRam- The number of memory hits in the cache region
- hitCountAux- The number of auxiliary hits in the cache region
- missCountNotFound- The number of misses in the cache region because the items were not found
- missCountExpired- The number of misses in the cache region because the items were expired
- byteCount- The number of bytes counted so far, will be a total of all items
 
 
- 
- 
Method Details- 
getCacheName- Returns:
- the cacheName
 
- 
getCacheSize- Returns:
- the cacheSize
 
- 
getCacheStatus- Returns:
- a status string
 
- 
getCacheStatisticsReturn the statistics for the region.- Returns:
- String
 
- 
getHitCountRam- Returns:
- the hitCountRam
 
- 
getHitCountAux- Returns:
- the hitCountAux
 
- 
getMissCountNotFound- Returns:
- the missCountNotFound
 
- 
getMissCountExpired- Returns:
- the missCountExpired
 
- 
getByteCount- Returns:
- total byte count
 
- 
toString
 
-