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

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

Go to download

The AWS Java SDK for Amazon Honeycode module holds the client classes that are used for communicating with Amazon Honeycode Service

There is a newer version: 1.12.731
Show newest version
/*
 * Copyright 2017-2022 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.honeycode.model;

import java.io.Serializable;
import javax.annotation.Generated;

/**
 * 
 * @see AWS API
 *      Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListTablesResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {

    /**
     * 

* The list of tables in the workbook. *

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

* Provides the pagination token to load the next page if there are more results matching the request. If a * pagination token is not present in the response, it means that all data matching the request has been loaded. *

*/ private String nextToken; /** *

* Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps * increasing with every update and the increments are not sequential. *

*/ private Long workbookCursor; /** *

* The list of tables in the workbook. *

* * @return The list of tables in the workbook. */ public java.util.List
getTables() { return tables; } /** *

* The list of tables in the workbook. *

* * @param tables * The list of tables in the workbook. */ public void setTables(java.util.Collection
tables) { if (tables == null) { this.tables = null; return; } this.tables = new java.util.ArrayList
(tables); } /** *

* The list of tables in the workbook. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setTables(java.util.Collection)} or {@link #withTables(java.util.Collection)} if you want to override the * existing values. *

* * @param tables * The list of tables in the workbook. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTablesResult withTables(Table... tables) { if (this.tables == null) { setTables(new java.util.ArrayList
(tables.length)); } for (Table ele : tables) { this.tables.add(ele); } return this; } /** *

* The list of tables in the workbook. *

* * @param tables * The list of tables in the workbook. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTablesResult withTables(java.util.Collection
tables) { setTables(tables); return this; } /** *

* Provides the pagination token to load the next page if there are more results matching the request. If a * pagination token is not present in the response, it means that all data matching the request has been loaded. *

* * @param nextToken * Provides the pagination token to load the next page if there are more results matching the request. If a * pagination token is not present in the response, it means that all data matching the request has been * loaded. */ public void setNextToken(String nextToken) { this.nextToken = nextToken; } /** *

* Provides the pagination token to load the next page if there are more results matching the request. If a * pagination token is not present in the response, it means that all data matching the request has been loaded. *

* * @return Provides the pagination token to load the next page if there are more results matching the request. If a * pagination token is not present in the response, it means that all data matching the request has been * loaded. */ public String getNextToken() { return this.nextToken; } /** *

* Provides the pagination token to load the next page if there are more results matching the request. If a * pagination token is not present in the response, it means that all data matching the request has been loaded. *

* * @param nextToken * Provides the pagination token to load the next page if there are more results matching the request. If a * pagination token is not present in the response, it means that all data matching the request has been * loaded. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTablesResult withNextToken(String nextToken) { setNextToken(nextToken); return this; } /** *

* Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps * increasing with every update and the increments are not sequential. *

* * @param workbookCursor * Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor * keeps increasing with every update and the increments are not sequential. */ public void setWorkbookCursor(Long workbookCursor) { this.workbookCursor = workbookCursor; } /** *

* Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps * increasing with every update and the increments are not sequential. *

* * @return Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor * keeps increasing with every update and the increments are not sequential. */ public Long getWorkbookCursor() { return this.workbookCursor; } /** *

* Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps * increasing with every update and the increments are not sequential. *

* * @param workbookCursor * Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor * keeps increasing with every update and the increments are not sequential. * @return Returns a reference to this object so that method calls can be chained together. */ public ListTablesResult withWorkbookCursor(Long workbookCursor) { setWorkbookCursor(workbookCursor); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getTables() != null) sb.append("Tables: ").append(getTables()).append(","); if (getNextToken() != null) sb.append("NextToken: ").append(getNextToken()).append(","); if (getWorkbookCursor() != null) sb.append("WorkbookCursor: ").append(getWorkbookCursor()); 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.getTables() == null ^ this.getTables() == null) return false; if (other.getTables() != null && other.getTables().equals(this.getTables()) == false) return false; if (other.getNextToken() == null ^ this.getNextToken() == null) return false; if (other.getNextToken() != null && other.getNextToken().equals(this.getNextToken()) == false) return false; if (other.getWorkbookCursor() == null ^ this.getWorkbookCursor() == null) return false; if (other.getWorkbookCursor() != null && other.getWorkbookCursor().equals(this.getWorkbookCursor()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTables() == null) ? 0 : getTables().hashCode()); hashCode = prime * hashCode + ((getNextToken() == null) ? 0 : getNextToken().hashCode()); hashCode = prime * hashCode + ((getWorkbookCursor() == null) ? 0 : getWorkbookCursor().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); } } }