com.amazonaws.services.athena.model.BatchGetPreparedStatementRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-athena Show documentation
/*
* Copyright 2019-2024 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.athena.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class BatchGetPreparedStatementRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* A list of prepared statement names to return.
*
*/
private java.util.List preparedStatementNames;
/**
*
* The name of the workgroup to which the prepared statements belong.
*
*/
private String workGroup;
/**
*
* A list of prepared statement names to return.
*
*
* @return A list of prepared statement names to return.
*/
public java.util.List getPreparedStatementNames() {
return preparedStatementNames;
}
/**
*
* A list of prepared statement names to return.
*
*
* @param preparedStatementNames
* A list of prepared statement names to return.
*/
public void setPreparedStatementNames(java.util.Collection preparedStatementNames) {
if (preparedStatementNames == null) {
this.preparedStatementNames = null;
return;
}
this.preparedStatementNames = new java.util.ArrayList(preparedStatementNames);
}
/**
*
* A list of prepared statement names to return.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setPreparedStatementNames(java.util.Collection)} or
* {@link #withPreparedStatementNames(java.util.Collection)} if you want to override the existing values.
*
*
* @param preparedStatementNames
* A list of prepared statement names to return.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetPreparedStatementRequest withPreparedStatementNames(String... preparedStatementNames) {
if (this.preparedStatementNames == null) {
setPreparedStatementNames(new java.util.ArrayList(preparedStatementNames.length));
}
for (String ele : preparedStatementNames) {
this.preparedStatementNames.add(ele);
}
return this;
}
/**
*
* A list of prepared statement names to return.
*
*
* @param preparedStatementNames
* A list of prepared statement names to return.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetPreparedStatementRequest withPreparedStatementNames(java.util.Collection preparedStatementNames) {
setPreparedStatementNames(preparedStatementNames);
return this;
}
/**
*
* The name of the workgroup to which the prepared statements belong.
*
*
* @param workGroup
* The name of the workgroup to which the prepared statements belong.
*/
public void setWorkGroup(String workGroup) {
this.workGroup = workGroup;
}
/**
*
* The name of the workgroup to which the prepared statements belong.
*
*
* @return The name of the workgroup to which the prepared statements belong.
*/
public String getWorkGroup() {
return this.workGroup;
}
/**
*
* The name of the workgroup to which the prepared statements belong.
*
*
* @param workGroup
* The name of the workgroup to which the prepared statements belong.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetPreparedStatementRequest withWorkGroup(String workGroup) {
setWorkGroup(workGroup);
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 (getPreparedStatementNames() != null)
sb.append("PreparedStatementNames: ").append(getPreparedStatementNames()).append(",");
if (getWorkGroup() != null)
sb.append("WorkGroup: ").append(getWorkGroup());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof BatchGetPreparedStatementRequest == false)
return false;
BatchGetPreparedStatementRequest other = (BatchGetPreparedStatementRequest) obj;
if (other.getPreparedStatementNames() == null ^ this.getPreparedStatementNames() == null)
return false;
if (other.getPreparedStatementNames() != null && other.getPreparedStatementNames().equals(this.getPreparedStatementNames()) == false)
return false;
if (other.getWorkGroup() == null ^ this.getWorkGroup() == null)
return false;
if (other.getWorkGroup() != null && other.getWorkGroup().equals(this.getWorkGroup()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getPreparedStatementNames() == null) ? 0 : getPreparedStatementNames().hashCode());
hashCode = prime * hashCode + ((getWorkGroup() == null) ? 0 : getWorkGroup().hashCode());
return hashCode;
}
@Override
public BatchGetPreparedStatementRequest clone() {
return (BatchGetPreparedStatementRequest) super.clone();
}
}