com.amazonaws.services.athena.model.BatchGetNamedQueryResult 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;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class BatchGetNamedQueryResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* Information about the named query IDs submitted.
*
*/
private java.util.List namedQueries;
/**
*
* Information about provided query IDs.
*
*/
private java.util.List unprocessedNamedQueryIds;
/**
*
* Information about the named query IDs submitted.
*
*
* @return Information about the named query IDs submitted.
*/
public java.util.List getNamedQueries() {
return namedQueries;
}
/**
*
* Information about the named query IDs submitted.
*
*
* @param namedQueries
* Information about the named query IDs submitted.
*/
public void setNamedQueries(java.util.Collection namedQueries) {
if (namedQueries == null) {
this.namedQueries = null;
return;
}
this.namedQueries = new java.util.ArrayList(namedQueries);
}
/**
*
* Information about the named query IDs submitted.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setNamedQueries(java.util.Collection)} or {@link #withNamedQueries(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param namedQueries
* Information about the named query IDs submitted.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetNamedQueryResult withNamedQueries(NamedQuery... namedQueries) {
if (this.namedQueries == null) {
setNamedQueries(new java.util.ArrayList(namedQueries.length));
}
for (NamedQuery ele : namedQueries) {
this.namedQueries.add(ele);
}
return this;
}
/**
*
* Information about the named query IDs submitted.
*
*
* @param namedQueries
* Information about the named query IDs submitted.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetNamedQueryResult withNamedQueries(java.util.Collection namedQueries) {
setNamedQueries(namedQueries);
return this;
}
/**
*
* Information about provided query IDs.
*
*
* @return Information about provided query IDs.
*/
public java.util.List getUnprocessedNamedQueryIds() {
return unprocessedNamedQueryIds;
}
/**
*
* Information about provided query IDs.
*
*
* @param unprocessedNamedQueryIds
* Information about provided query IDs.
*/
public void setUnprocessedNamedQueryIds(java.util.Collection unprocessedNamedQueryIds) {
if (unprocessedNamedQueryIds == null) {
this.unprocessedNamedQueryIds = null;
return;
}
this.unprocessedNamedQueryIds = new java.util.ArrayList(unprocessedNamedQueryIds);
}
/**
*
* Information about provided query IDs.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setUnprocessedNamedQueryIds(java.util.Collection)} or
* {@link #withUnprocessedNamedQueryIds(java.util.Collection)} if you want to override the existing values.
*
*
* @param unprocessedNamedQueryIds
* Information about provided query IDs.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetNamedQueryResult withUnprocessedNamedQueryIds(UnprocessedNamedQueryId... unprocessedNamedQueryIds) {
if (this.unprocessedNamedQueryIds == null) {
setUnprocessedNamedQueryIds(new java.util.ArrayList(unprocessedNamedQueryIds.length));
}
for (UnprocessedNamedQueryId ele : unprocessedNamedQueryIds) {
this.unprocessedNamedQueryIds.add(ele);
}
return this;
}
/**
*
* Information about provided query IDs.
*
*
* @param unprocessedNamedQueryIds
* Information about provided query IDs.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public BatchGetNamedQueryResult withUnprocessedNamedQueryIds(java.util.Collection unprocessedNamedQueryIds) {
setUnprocessedNamedQueryIds(unprocessedNamedQueryIds);
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 (getNamedQueries() != null)
sb.append("NamedQueries: ").append(getNamedQueries()).append(",");
if (getUnprocessedNamedQueryIds() != null)
sb.append("UnprocessedNamedQueryIds: ").append(getUnprocessedNamedQueryIds());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof BatchGetNamedQueryResult == false)
return false;
BatchGetNamedQueryResult other = (BatchGetNamedQueryResult) obj;
if (other.getNamedQueries() == null ^ this.getNamedQueries() == null)
return false;
if (other.getNamedQueries() != null && other.getNamedQueries().equals(this.getNamedQueries()) == false)
return false;
if (other.getUnprocessedNamedQueryIds() == null ^ this.getUnprocessedNamedQueryIds() == null)
return false;
if (other.getUnprocessedNamedQueryIds() != null && other.getUnprocessedNamedQueryIds().equals(this.getUnprocessedNamedQueryIds()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNamedQueries() == null) ? 0 : getNamedQueries().hashCode());
hashCode = prime * hashCode + ((getUnprocessedNamedQueryIds() == null) ? 0 : getUnprocessedNamedQueryIds().hashCode());
return hashCode;
}
@Override
public BatchGetNamedQueryResult clone() {
try {
return (BatchGetNamedQueryResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}