/* * Copyright 2012-2017 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; import javax.annotation.Generated; /** * <p> * Represents the output of a <code>ListTables</code> operation. * </p> * * @see <a href="http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ListTables" target="_top">AWS API * Documentation</a> */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ListTablesResult extends com.amazonaws.AmazonWebServiceResult<com.amazonaws.ResponseMetadata> implements Serializable, Cloneable { /** * <p> * The names of the tables associated with the current account at the current endpoint. The maximum size of this * array is 100. * </p> * <p> * If <code>LastEvaluatedTableName</code> also appears in the output, you can use this value as the * <code>ExclusiveStartTableName</code> parameter in a subsequent <code>ListTables</code> request and obtain the * next page of results. * </p> */ private java.util.List<String> tableNames; /** * <p> * The name of the last table in the current page of results. Use this value as the * <code>ExclusiveStartTableName</code> in a new request to obtain the next page of results, until all the table * names are returned. * </p> * <p> * If you do not receive a <code>LastEvaluatedTableName</code> value in the response, this means that there are no * more table names to be retrieved. * </p> */ private String lastEvaluatedTableName; /** * <p> * The names of the tables associated with the current account at the current endpoint. The maximum size of this * array is 100. * </p> * <p> * If <code>LastEvaluatedTableName</code> also appears in the output, you can use this value as the * <code>ExclusiveStartTableName</code> parameter in a subsequent <code>ListTables</code> request and obtain the * next page of results. * </p> * * @return The names of the tables associated with the current account at the current endpoint. The maximum size of * this array is 100.</p> * <p> * If <code>LastEvaluatedTableName</code> also appears in the output, you can use this value as the * <code>ExclusiveStartTableName</code> parameter in a subsequent <code>ListTables</code> request and obtain * the next page of results. */ public java.util.List<String> getTableNames() { return tableNames; } /** * <p> * The names of the tables associated with the current account at the current endpoint. The maximum size of this * array is 100. * </p> * <p> * If <code>LastEvaluatedTableName</code> also appears in the output, you can use this value as the * <code>ExclusiveStartTableName</code> parameter in a subsequent <code>ListTables</code> request and obtain the * next page of results. * </p> * * @param tableNames * The names of the tables associated with the current account at the current endpoint. The maximum size of * this array is 100.</p> * <p> * If <code>LastEvaluatedTableName</code> also appears in the output, you can use this value as the * <code>ExclusiveStartTableName</code> parameter in a subsequent <code>ListTables</code> request and obtain * the next page of results. */ public void setTableNames(java.util.Collection<String> tableNames) { if (tableNames == null) { this.tableNames = null; return; } this.tableNames = new java.util.ArrayList<String>(tableNames); } /** * <p> * The names of the tables associated with the current account at the current endpoint. The maximum size of this * array is 100. * </p> * <p> * If <code>LastEvaluatedTableName</code> also appears in the output, you can use this value as the * <code>ExclusiveStartTableName</code> parameter in a subsequent <code>ListTables</code> request and obtain the * next page of results. * </p> * <p> * <b>NOTE:</b> 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. * </p> * * @param tableNames * The names of the tables associated with the current account at the current endpoint. The maximum size of * this array is 100.</p> * <p> * If <code>LastEvaluatedTableName</code> also appears in the output, you can use this value as the * <code>ExclusiveStartTableName</code> parameter in a subsequent <code>ListTables</code> 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<String>(tableNames.length)); } for (String ele : tableNames) { this.tableNames.add(ele); } return this; } /** * <p> * The names of the tables associated with the current account at the current endpoint. The maximum size of this * array is 100. * </p> * <p> * If <code>LastEvaluatedTableName</code> also appears in the output, you can use this value as the * <code>ExclusiveStartTableName</code> parameter in a subsequent <code>ListTables</code> request and obtain the * next page of results. * </p> * * @param tableNames * The names of the tables associated with the current account at the current endpoint. The maximum size of * this array is 100.</p> * <p> * If <code>LastEvaluatedTableName</code> also appears in the output, you can use this value as the * <code>ExclusiveStartTableName</code> parameter in a subsequent <code>ListTables</code> 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<String> tableNames) { setTableNames(tableNames); return this; } /** * <p> * The name of the last table in the current page of results. Use this value as the * <code>ExclusiveStartTableName</code> in a new request to obtain the next page of results, until all the table * names are returned. * </p> * <p> * If you do not receive a <code>LastEvaluatedTableName</code> value in the response, this means that there are no * more table names to be retrieved. * </p> * * @param lastEvaluatedTableName * The name of the last table in the current page of results. Use this value as the * <code>ExclusiveStartTableName</code> in a new request to obtain the next page of results, until all the * table names are returned.</p> * <p> * If you do not receive a <code>LastEvaluatedTableName</code> value in the response, this means that there * are no more table names to be retrieved. */ public void setLastEvaluatedTableName(String lastEvaluatedTableName) { this.lastEvaluatedTableName = lastEvaluatedTableName; } /** * <p> * The name of the last table in the current page of results. Use this value as the * <code>ExclusiveStartTableName</code> in a new request to obtain the next page of results, until all the table * names are returned. * </p> * <p> * If you do not receive a <code>LastEvaluatedTableName</code> value in the response, this means that there are no * more table names to be retrieved. * </p> * * @return The name of the last table in the current page of results. Use this value as the * <code>ExclusiveStartTableName</code> in a new request to obtain the next page of results, until all the * table names are returned.</p> * <p> * If you do not receive a <code>LastEvaluatedTableName</code> value in the response, this means that there * are no more table names to be retrieved. */ public String getLastEvaluatedTableName() { return this.lastEvaluatedTableName; } /** * <p> * The name of the last table in the current page of results. Use this value as the * <code>ExclusiveStartTableName</code> in a new request to obtain the next page of results, until all the table * names are returned. * </p> * <p> * If you do not receive a <code>LastEvaluatedTableName</code> value in the response, this means that there are no * more table names to be retrieved. * </p> * * @param lastEvaluatedTableName * The name of the last table in the current page of results. Use this value as the * <code>ExclusiveStartTableName</code> in a new request to obtain the next page of results, until all the * table names are returned.</p> * <p> * If you do not receive a <code>LastEvaluatedTableName</code> 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: ").append(getTableNames()).append(","); if (getLastEvaluatedTableName() != null) sb.append("LastEvaluatedTableName: ").append(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); } } }