Package com.jalios.jcms
Class StoreInfo
- java.lang.Object
-
- com.jalios.jcms.StoreInfo
-
public class StoreInfo extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.Class<? extends Storable>>
getClassesSortedByOpCount()
int
getCreateCount()
Returns the count of create operations recorded in the store.int
getCreateCount(java.lang.Class<? extends Storable> clazz)
int
getDeleteCount()
Returns the count of delete operations recorded in the store.int
getDeleteCount(java.lang.Class<? extends Storable> clazz)
LoadReport
getLoadReport()
Returns the store load reportint
getOpCount()
Returns the count of operations recorded in the store.int
getOpCount(java.lang.Class<? extends Storable> clazz)
double
getOpStorableRatio()
java.lang.String
getOpStorableRatioLevel(double ratio)
Stamp
getProgressStamp()
StampTable
getProgressTable()
int
getStorableCount()
Returns count of Storable object.java.io.File
getStoreFile()
java.util.List<java.io.File>
getStoreFileList()
long
getStoreFileSize()
int
getUpdateCount()
Returns the count of update operations recorded in the store.int
getUpdateCount(java.lang.Class<? extends Storable> clazz)
double
getUpdateCreateRatio()
java.lang.String
getUpdateCreateRatioLevel(double ratio)
boolean
isStoreDirectory()
-
-
-
Method Detail
-
getLoadReport
public LoadReport getLoadReport()
Returns the store load report- Returns:
- the store load report
-
isStoreDirectory
public boolean isStoreDirectory()
-
getStoreFileSize
public long getStoreFileSize()
-
getStoreFileList
public java.util.List<java.io.File> getStoreFileList()
-
getStoreFile
public java.io.File getStoreFile()
-
getStorableCount
public int getStorableCount()
Returns count of Storable object.- Returns:
- the count of Storable object.
-
getOpCount
public int getOpCount()
Returns the count of operations recorded in the store.- Returns:
- the count of operations.
-
getCreateCount
public int getCreateCount()
Returns the count of create operations recorded in the store.- Returns:
- the count of create operations.
-
getUpdateCount
public int getUpdateCount()
Returns the count of update operations recorded in the store.- Returns:
- the count of update operations.
-
getDeleteCount
public int getDeleteCount()
Returns the count of delete operations recorded in the store.- Returns:
- the count of delete operations.
-
getClassesSortedByOpCount
public java.util.List<java.lang.Class<? extends Storable>> getClassesSortedByOpCount()
-
getOpCount
public int getOpCount(java.lang.Class<? extends Storable> clazz)
-
getCreateCount
public int getCreateCount(java.lang.Class<? extends Storable> clazz)
-
getUpdateCount
public int getUpdateCount(java.lang.Class<? extends Storable> clazz)
-
getDeleteCount
public int getDeleteCount(java.lang.Class<? extends Storable> clazz)
-
getUpdateCreateRatio
public double getUpdateCreateRatio()
-
getOpStorableRatio
public double getOpStorableRatio()
-
getProgressTable
public StampTable getProgressTable()
-
getProgressStamp
public Stamp getProgressStamp()
-
getUpdateCreateRatioLevel
public java.lang.String getUpdateCreateRatioLevel(double ratio)
-
getOpStorableRatioLevel
public java.lang.String getOpStorableRatioLevel(double ratio)
-
-