Class SpaceInformation
- java.lang.Object
-
- org.apache.derby.impl.store.raw.data.SpaceInformation
-
-
Field Summary
Fields Modifier and Type Field Description private longnumAllocatedPagesprivate longnumFreePagesprivate longnumUnfilledPagesprivate intpageSize
-
Constructor Summary
Constructors Constructor Description SpaceInformation(long numAllocatedPages, long numFreePages, long numUnfilledPages)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetNumAllocatedPages()Get the estimated number of allocated pageslonggetNumFreePages()Get the estimated number of free pageslonggetNumUnfilledPages()Get the estimated number of unfilled pagesintgetPageSize()Get the page sizevoidsetPageSize(int pageSize)
-
-
-
Method Detail
-
getNumAllocatedPages
public long getNumAllocatedPages()
Get the estimated number of allocated pages- Specified by:
getNumAllocatedPagesin interfaceSpaceInfo
-
getNumFreePages
public long getNumFreePages()
Get the estimated number of free pages- Specified by:
getNumFreePagesin interfaceSpaceInfo
-
getNumUnfilledPages
public long getNumUnfilledPages()
Get the estimated number of unfilled pages- Specified by:
getNumUnfilledPagesin interfaceSpaceInfo
-
getPageSize
public int getPageSize()
Description copied from interface:SpaceInfoGet the page size- Specified by:
getPageSizein interfaceSpaceInfo
-
setPageSize
public void setPageSize(int pageSize)
-
-