com.amazonaws.services.dynamodb.model
Class ListTablesResult

java.lang.Object
  extended by com.amazonaws.services.dynamodb.model.ListTablesResult

public class ListTablesResult
extends Object

List Tables Result


Constructor Summary
ListTablesResult()
           
 
Method Summary
 boolean equals(Object obj)
           
 String getLastEvaluatedTableName()
          The name of the last table in the current list.
 List<String> getTableNames()
          Returns the value of the TableNames property for this object.
 int hashCode()
           
 void setLastEvaluatedTableName(String lastEvaluatedTableName)
          The name of the last table in the current list.
 void setTableNames(Collection<String> tableNames)
          Sets the value of the TableNames property for this object.
 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 list.
 ListTablesResult withTableNames(Collection<String> tableNames)
          Sets the value of the TableNames property for this object.
 ListTablesResult withTableNames(String... tableNames)
          Sets the value of the TableNames property for this object.
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ListTablesResult

public ListTablesResult()
Method Detail

getTableNames

public List<String> getTableNames()
Returns the value of the TableNames property for this object.

Returns:
The value of the TableNames property for this object.

setTableNames

public void setTableNames(Collection<String> tableNames)
Sets the value of the TableNames property for this object.

Parameters:
tableNames - The new value for the TableNames property for this object.

withTableNames

public ListTablesResult withTableNames(String... tableNames)
Sets the value of the TableNames property for this object.

Returns a reference to this object so that method calls can be chained together.

Parameters:
tableNames - The new value for the TableNames property for this object.
Returns:
A reference to this updated object so that method calls can be chained together.

withTableNames

public ListTablesResult withTableNames(Collection<String> tableNames)
Sets the value of the TableNames property for this object.

Returns a reference to this object so that method calls can be chained together.

Parameters:
tableNames - The new value for the TableNames property for this object.
Returns:
A reference to this updated object so that method calls can be chained together.

getLastEvaluatedTableName

public String getLastEvaluatedTableName()
The name of the last table in the current list. Use this value as the ExclusiveStartTableName in a new request to continue the list until all the table names are returned. If this value is null, all table names have been returned.

Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+

Returns:
The name of the last table in the current list. Use this value as the ExclusiveStartTableName in a new request to continue the list until all the table names are returned. If this value is null, all table names have been returned.

setLastEvaluatedTableName

public void setLastEvaluatedTableName(String lastEvaluatedTableName)
The name of the last table in the current list. Use this value as the ExclusiveStartTableName in a new request to continue the list until all the table names are returned. If this value is null, all table names have been returned.

Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+

Parameters:
lastEvaluatedTableName - The name of the last table in the current list. Use this value as the ExclusiveStartTableName in a new request to continue the list until all the table names are returned. If this value is null, all table names have been returned.

withLastEvaluatedTableName

public ListTablesResult withLastEvaluatedTableName(String lastEvaluatedTableName)
The name of the last table in the current list. Use this value as the ExclusiveStartTableName in a new request to continue the list until all the table names are returned. If this value is null, all table names have been returned.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 3 - 255
Pattern: [a-zA-Z0-9_.-]+

Parameters:
lastEvaluatedTableName - The name of the last table in the current list. Use this value as the ExclusiveStartTableName in a new request to continue the list until all the table names are returned. If this value is null, all table names have been returned.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class Object
Returns:
A string representation of this object.
See Also:
Object.toString()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.