All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.dynamodbv2.model.ListTablesResult Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not
 * use this file except in compliance with the License. A copy of the License is
 * located at
 * 
 * http://aws.amazon.com/apache2.0
 * 
 * or in the "license" file accompanying this file. This file is distributed on
 * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */
package com.amazonaws.services.dynamodbv2.model;

import java.io.Serializable;

/**
 * 

* Represents the output of a ListTables operation. *

*/ public class ListTablesResult implements Serializable, Cloneable { /** *

* 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. *

*/ private java.util.List tableNames; /** *

* 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. *

*/ private String lastEvaluatedTableName; /** *

* 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. *

* * @return 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 java.util.List getTableNames() { return 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. *

* * @param 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 setTableNames(java.util.Collection tableNames) { if (tableNames == null) { this.tableNames = null; return; } this.tableNames = new java.util.ArrayList(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 {@link #setTableNames(java.util.Collection)} or * {@link #withTableNames(java.util.Collection)} if you want to override the * existing values. *

* * @param 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. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListTablesResult withTableNames(String... tableNames) { if (this.tableNames == null) { setTableNames(new java.util.ArrayList(tableNames.length)); } for (String ele : tableNames) { this.tableNames.add(ele); } return this; } /** *

* 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. *

* * @param 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. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListTablesResult withTableNames( java.util.Collection tableNames) { setTableNames(tableNames); return this; } /** *

* 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. *

* * @param 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 void setLastEvaluatedTableName(String lastEvaluatedTableName) { this.lastEvaluatedTableName = 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. *

* * @return 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() { return this.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. *

* * @param 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. * @return Returns a reference to this object so that method calls can be * chained together. */ public ListTablesResult withLastEvaluatedTableName( String lastEvaluatedTableName) { setLastEvaluatedTableName(lastEvaluatedTableName); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getTableNames() != null) sb.append("TableNames: " + getTableNames() + ","); if (getLastEvaluatedTableName() != null) sb.append("LastEvaluatedTableName: " + getLastEvaluatedTableName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ListTablesResult == false) return false; ListTablesResult other = (ListTablesResult) obj; if (other.getTableNames() == null ^ this.getTableNames() == null) return false; if (other.getTableNames() != null && other.getTableNames().equals(this.getTableNames()) == false) return false; if (other.getLastEvaluatedTableName() == null ^ this.getLastEvaluatedTableName() == null) return false; if (other.getLastEvaluatedTableName() != null && other.getLastEvaluatedTableName().equals( this.getLastEvaluatedTableName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTableNames() == null) ? 0 : getTableNames().hashCode()); hashCode = prime * hashCode + ((getLastEvaluatedTableName() == null) ? 0 : getLastEvaluatedTableName().hashCode()); return hashCode; } @Override public ListTablesResult clone() { try { return (ListTablesResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy