public class TableSpaceData extends AbstractModel
header, skipSign
Constructor and Description |
---|
TableSpaceData() |
TableSpaceData(TableSpaceData source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
Float |
getDataFree()
Get Fragmented space in MB.
|
Float |
getDataLength()
Get Data space in MB.
|
String |
getEngine()
Get Database table storage engine.
|
Float |
getFragRatio()
Get Fragmented rate (%).
|
Float |
getIndexLength()
Get Index space in MB.
|
Float |
getPhysicalFileSize()
Get Size in MB of the physical file exclusive to a table.
|
String |
getTableName()
Get Table name.
|
Long |
getTableRows()
Get Number of rows.
|
String |
getTableSchema()
Get Database name.
|
Float |
getTotalLength()
Get Total space usage in MB.
|
void |
setDataFree(Float DataFree)
Set Fragmented space in MB.
|
void |
setDataLength(Float DataLength)
Set Data space in MB.
|
void |
setEngine(String Engine)
Set Database table storage engine.
|
void |
setFragRatio(Float FragRatio)
Set Fragmented rate (%).
|
void |
setIndexLength(Float IndexLength)
Set Index space in MB.
|
void |
setPhysicalFileSize(Float PhysicalFileSize)
Set Size in MB of the physical file exclusive to a table.
|
void |
setTableName(String TableName)
Set Table name.
|
void |
setTableRows(Long TableRows)
Set Number of rows.
|
void |
setTableSchema(String TableSchema)
Set Database name.
|
void |
setTotalLength(Float TotalLength)
Set Total space usage in MB.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, GetHeader, getMultipartRequestParams, getSkipSign, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonString
public TableSpaceData()
public TableSpaceData(TableSpaceData source)
public String getTableName()
public void setTableName(String TableName)
TableName
- Table name.public String getTableSchema()
public void setTableSchema(String TableSchema)
TableSchema
- Database name.public String getEngine()
public void setEngine(String Engine)
Engine
- Database table storage engine.public Float getDataLength()
public void setDataLength(Float DataLength)
DataLength
- Data space in MB.public Float getIndexLength()
public void setIndexLength(Float IndexLength)
IndexLength
- Index space in MB.public Float getDataFree()
public void setDataFree(Float DataFree)
DataFree
- Fragmented space in MB.public Float getTotalLength()
public void setTotalLength(Float TotalLength)
TotalLength
- Total space usage in MB.public Float getFragRatio()
public void setFragRatio(Float FragRatio)
FragRatio
- Fragmented rate (%).public Long getTableRows()
public void setTableRows(Long TableRows)
TableRows
- Number of rows.public Float getPhysicalFileSize()
public void setPhysicalFileSize(Float PhysicalFileSize)
PhysicalFileSize
- Size in MB of the physical file exclusive to a table.Copyright © 2024. All rights reserved.