类 ListTablesResponse.TableInfo
- java.lang.Object
-
- com.baidubce.services.tablestorage.model.ListTablesResponse.TableInfo
-
- 封闭类:
- ListTablesResponse
public static class ListTablesResponse.TableInfo extends Object
The table info consists of attributes of table in TableStorage.
-
-
构造器概要
构造器 构造器 说明 TableInfo()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 longgetMaxVersions()Get the maxVersions.StringgetStorageType()Get the storage type.StringgetTableName()Get the table name.TableStategetTableState()Get the table state.longgetTableVersion()Get the table version.voidsetMaxVersions(int maxVersions)Set the MaxVersions.voidsetStorageType(String storageType)Set the storage type.voidsetTableName(String tableName)Set the table name.voidsetTableState(TableState tableState)Set the table state.voidsetTableVersion(long tableVersion)Set the table version.StringtoString()Convert this object to string.
-
-
-
方法详细资料
-
getTableName
public String getTableName()
Get the table name.- 返回:
- The table name.
-
setTableName
public void setTableName(String tableName)
Set the table name.- 参数:
tableName- The table name set to table info.
-
getTableState
public TableState getTableState()
Get the table state.- 返回:
- The table state.
-
setTableState
public void setTableState(TableState tableState)
Set the table state.- 参数:
tableState- The table state set to table info.
-
getTableVersion
public long getTableVersion()
Get the table version.- 返回:
- The table version.
-
setTableVersion
public void setTableVersion(long tableVersion)
Set the table version.- 参数:
tableVersion- The table version set to table info.
-
getMaxVersions
public long getMaxVersions()
Get the maxVersions.- 返回:
- The maxVersions.
-
setMaxVersions
public void setMaxVersions(int maxVersions)
Set the MaxVersions.- 参数:
maxVersions- The MaxVersions set to table info.
-
getStorageType
public String getStorageType()
Get the storage type.- 返回:
- The table storage type.
-
setStorageType
public void setStorageType(String storageType)
Set the storage type.- 参数:
storageType- The storage type set to table info.
-
-