public class ListTablesResult
extends java.lang.Object
implements java.io.Serializable
Represents the output of a ListTables operation.
| コンストラクタと説明 |
|---|
ListTablesResult() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getLastEvaluatedTableName()
The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned.
|
java.util.List<java.lang.String> |
getTableNames()
The names of the tables associated with the current account at the
current endpoint.
|
int |
hashCode() |
void |
setLastEvaluatedTableName(java.lang.String lastEvaluatedTableName)
The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned.
|
void |
setTableNames(java.util.Collection<java.lang.String> tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListTablesResult |
withLastEvaluatedTableName(java.lang.String lastEvaluatedTableName)
The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned.
|
ListTablesResult |
withTableNames(java.util.Collection<java.lang.String> tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
ListTablesResult |
withTableNames(java.lang.String... tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
public java.util.List<java.lang.String> getTableNames()
public void setTableNames(java.util.Collection<java.lang.String> tableNames)
tableNames - The names of the tables associated with the current account at the
current endpoint.public ListTablesResult withTableNames(java.lang.String... tableNames)
Returns a reference to this object so that method calls can be chained together.
tableNames - The names of the tables associated with the current account at the
current endpoint.public ListTablesResult withTableNames(java.util.Collection<java.lang.String> tableNames)
Returns a reference to this object so that method calls can be chained together.
tableNames - The names of the tables associated with the current account at the
current endpoint.public java.lang.String getLastEvaluatedTableName()
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
public void setLastEvaluatedTableName(java.lang.String lastEvaluatedTableName)
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
lastEvaluatedTableName - The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned. This value does
not exist in a response if all table names are already returned. Use
this value as the ExclusiveStartTableName in a new request to
continue the list until all the table names are returned.public ListTablesResult withLastEvaluatedTableName(java.lang.String lastEvaluatedTableName)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+
lastEvaluatedTableName - The name of the last table in the current list, only if some tables
for the account and endpoint have not been returned. This value does
not exist in a response if all table names are already returned. Use
this value as the ExclusiveStartTableName in a new request to
continue the list until all the table names are returned.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object