类 ListTablesResponse
- java.lang.Object
-
- com.baidubce.model.AbstractBceResponse
-
- com.baidubce.services.tablestorage.model.AbstractTableStorageResponse
-
- com.baidubce.services.tablestorage.model.ListTablesResponse
-
- 所有已实现的接口:
Serializable
public class ListTablesResponse extends AbstractTableStorageResponse
Represents the output of a ListTables operation.- 另请参阅:
- 序列化表格
-
-
嵌套类概要
嵌套类 修饰符和类型 类 说明 static classListTablesResponse.TableInfoThe table info consists of attributes of table in TableStorage.
-
字段概要
-
从类继承的字段 com.baidubce.model.AbstractBceResponse
metadata
-
-
构造器概要
构造器 构造器 说明 ListTablesResponse()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 ListTablesResponse.TableInfogetTableInfo(String tableName)Get the table info of the target table name.List<ListTablesResponse.TableInfo>getTables()Get list of table info objects of this list table response.voidsetTables(List<ListTablesResponse.TableInfo> tables)Set the table info objects to this list tables request.StringtoString()Convert this object to string.-
从类继承的方法 com.baidubce.model.AbstractBceResponse
getMetadata
-
-
-
-
方法详细资料
-
getTables
public List<ListTablesResponse.TableInfo> getTables()
Get list of table info objects of this list table response.- 返回:
- The list of table info objects of this list table response.
-
getTableInfo
public ListTablesResponse.TableInfo getTableInfo(String tableName)
Get the table info of the target table name.- 参数:
tableName- the target table name.- 返回:
- The table info of the target table.
-
setTables
public void setTables(List<ListTablesResponse.TableInfo> tables)
Set the table info objects to this list tables request.- 参数:
tables- The list of table info objects.
-
toString
public String toString()
Convert this object to string.- 覆盖:
toString在类中AbstractTableStorageResponse- 返回:
- The string represent of this object.
-
-