类 GetTableRequest
- java.lang.Object
-
- com.baidubce.model.AbstractBceRequest
-
- com.baidubce.services.moladb.model.GetTableRequest
-
public class GetTableRequest extends AbstractBceRequest
Represents the input of a GetTable operation.
-
-
构造器概要
构造器 构造器 说明 GetTableRequest()Constructs a new GetTableRequest object.GetTableRequest(String tableName)Constructs a new GetTableRequest object.
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetTableName()Get the name of the table from this object.voidsetTableName(String tableName)Set the name of the table for this object.GetTableRequestwithRequestCredentials(BceCredentials credentials)GetTableRequestwithTableName(String tableName)Set the name of the table for this object.-
从类继承的方法 com.baidubce.model.AbstractBceRequest
getRequestCredentials, setRequestCredentials
-
-
-
-
构造器详细资料
-
GetTableRequest
public GetTableRequest()
Constructs a new GetTableRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.
-
GetTableRequest
public GetTableRequest(String tableName)
Constructs a new GetTableRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.- 参数:
tableName- The name of the table from which to get information.
-
-
方法详细资料
-
withTableName
public GetTableRequest withTableName(String tableName)
Set the name of the table for this object.- 参数:
tableName- The name of the table to be set.- 返回:
- A reference to this object so that method calls can be chained together.
-
setTableName
public void setTableName(String tableName)
Set the name of the table for this object.- 参数:
tableName- The name of the table to be set.
-
getTableName
public String getTableName()
Get the name of the table from this object.- 返回:
- The name of the table.
-
withRequestCredentials
public GetTableRequest withRequestCredentials(BceCredentials credentials)
- 指定者:
withRequestCredentials在类中AbstractBceRequest
-
-