public class ListTablesResult extends Object implements Serializable, Cloneable
Represents the output of a ListTables operation.
Constructor and Description |
---|
ListTablesResult() |
Modifier and Type | Method and Description |
---|---|
ListTablesResult |
clone() |
boolean |
equals(Object obj) |
String |
getLastEvaluatedTableName()
The name of the last table in the current page of results.
|
List<String> |
getTableNames()
The names of the tables associated with the current account at the
current endpoint.
|
int |
hashCode() |
void |
setLastEvaluatedTableName(String lastEvaluatedTableName)
The name of the last table in the current page of results.
|
void |
setTableNames(Collection<String> tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListTablesResult |
withLastEvaluatedTableName(String lastEvaluatedTableName)
The name of the last table in the current page of results.
|
ListTablesResult |
withTableNames(Collection<String> tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
ListTablesResult |
withTableNames(String... tableNames)
The names of the tables associated with the current account at the
current endpoint.
|
public List<String> getTableNames()
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
public void setTableNames(Collection<String> tableNames)
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
tableNames
- The names of the tables associated with the current account at the
current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
public ListTablesResult withTableNames(String... tableNames)
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
NOTE: This method appends the values to the existing list (if
any). Use setTableNames(java.util.Collection)
or
withTableNames(java.util.Collection)
if you want to override the
existing values.
tableNames
- The names of the tables associated with the current account at the
current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
public ListTablesResult withTableNames(Collection<String> tableNames)
The names of the tables associated with the current account at the current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
tableNames
- The names of the tables associated with the current account at the
current endpoint. The maximum size of this array is 100.
If LastEvaluatedTableName also appears in the output, you can use this value as the ExclusiveStartTableName parameter in a subsequent ListTables request and obtain the next page of results.
public void setLastEvaluatedTableName(String lastEvaluatedTableName)
The name of the last table in the current page of results. Use this value as the ExclusiveStartTableName in a new request to obtain the next page of results, until all the table names are returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
lastEvaluatedTableName
- The name of the last table in the current page of results. Use
this value as the ExclusiveStartTableName in a new request
to obtain the next page of results, until all the table names are
returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
public String getLastEvaluatedTableName()
The name of the last table in the current page of results. Use this value as the ExclusiveStartTableName in a new request to obtain the next page of results, until all the table names are returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
public ListTablesResult withLastEvaluatedTableName(String lastEvaluatedTableName)
The name of the last table in the current page of results. Use this value as the ExclusiveStartTableName in a new request to obtain the next page of results, until all the table names are returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
lastEvaluatedTableName
- The name of the last table in the current page of results. Use
this value as the ExclusiveStartTableName in a new request
to obtain the next page of results, until all the table names are
returned.
If you do not receive a LastEvaluatedTableName value in the response, this means that there are no more table names to be retrieved.
public String toString()
toString
in class Object
Object.toString()
public ListTablesResult clone()
Copyright © 2015. All rights reserved.