com.amazonaws.services.deadline.model.SearchTasksResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-deadline 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.deadline.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class SearchTasksResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The next incremental starting point after the defined itemOffset
.
*
*/
private Integer nextItemOffset;
/**
*
* Tasks in the search.
*
*/
private java.util.List tasks;
/**
*
* The total number of results in the search.
*
*/
private Integer totalResults;
/**
*
* The next incremental starting point after the defined itemOffset
.
*
*
* @param nextItemOffset
* The next incremental starting point after the defined itemOffset
.
*/
public void setNextItemOffset(Integer nextItemOffset) {
this.nextItemOffset = nextItemOffset;
}
/**
*
* The next incremental starting point after the defined itemOffset
.
*
*
* @return The next incremental starting point after the defined itemOffset
.
*/
public Integer getNextItemOffset() {
return this.nextItemOffset;
}
/**
*
* The next incremental starting point after the defined itemOffset
.
*
*
* @param nextItemOffset
* The next incremental starting point after the defined itemOffset
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SearchTasksResult withNextItemOffset(Integer nextItemOffset) {
setNextItemOffset(nextItemOffset);
return this;
}
/**
*
* Tasks in the search.
*
*
* @return Tasks in the search.
*/
public java.util.List getTasks() {
return tasks;
}
/**
*
* Tasks in the search.
*
*
* @param tasks
* Tasks in the search.
*/
public void setTasks(java.util.Collection tasks) {
if (tasks == null) {
this.tasks = null;
return;
}
this.tasks = new java.util.ArrayList(tasks);
}
/**
*
* Tasks in the search.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setTasks(java.util.Collection)} or {@link #withTasks(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tasks
* Tasks in the search.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SearchTasksResult withTasks(TaskSearchSummary... tasks) {
if (this.tasks == null) {
setTasks(new java.util.ArrayList(tasks.length));
}
for (TaskSearchSummary ele : tasks) {
this.tasks.add(ele);
}
return this;
}
/**
*
* Tasks in the search.
*
*
* @param tasks
* Tasks in the search.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SearchTasksResult withTasks(java.util.Collection tasks) {
setTasks(tasks);
return this;
}
/**
*
* The total number of results in the search.
*
*
* @param totalResults
* The total number of results in the search.
*/
public void setTotalResults(Integer totalResults) {
this.totalResults = totalResults;
}
/**
*
* The total number of results in the search.
*
*
* @return The total number of results in the search.
*/
public Integer getTotalResults() {
return this.totalResults;
}
/**
*
* The total number of results in the search.
*
*
* @param totalResults
* The total number of results in the search.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SearchTasksResult withTotalResults(Integer totalResults) {
setTotalResults(totalResults);
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 (getNextItemOffset() != null)
sb.append("NextItemOffset: ").append(getNextItemOffset()).append(",");
if (getTasks() != null)
sb.append("Tasks: ").append(getTasks()).append(",");
if (getTotalResults() != null)
sb.append("TotalResults: ").append(getTotalResults());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof SearchTasksResult == false)
return false;
SearchTasksResult other = (SearchTasksResult) obj;
if (other.getNextItemOffset() == null ^ this.getNextItemOffset() == null)
return false;
if (other.getNextItemOffset() != null && other.getNextItemOffset().equals(this.getNextItemOffset()) == false)
return false;
if (other.getTasks() == null ^ this.getTasks() == null)
return false;
if (other.getTasks() != null && other.getTasks().equals(this.getTasks()) == false)
return false;
if (other.getTotalResults() == null ^ this.getTotalResults() == null)
return false;
if (other.getTotalResults() != null && other.getTotalResults().equals(this.getTotalResults()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNextItemOffset() == null) ? 0 : getNextItemOffset().hashCode());
hashCode = prime * hashCode + ((getTasks() == null) ? 0 : getTasks().hashCode());
hashCode = prime * hashCode + ((getTotalResults() == null) ? 0 : getTotalResults().hashCode());
return hashCode;
}
@Override
public SearchTasksResult clone() {
try {
return (SearchTasksResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}