
com.amazonaws.services.elasticmapreduce.model.ListClustersRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-emr Show documentation
/*
* Copyright 2010-2016 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.elasticmapreduce.model;
import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* This input determines how the ListClusters action filters the list of
* clusters that it returns.
*
*/
public class ListClustersRequest extends AmazonWebServiceRequest implements
Serializable, Cloneable {
/**
*
* The creation date and time beginning value filter for listing clusters .
*
*/
private java.util.Date createdAfter;
/**
*
* The creation date and time end value filter for listing clusters .
*
*/
private java.util.Date createdBefore;
/**
*
* The cluster state filters to apply when listing clusters.
*
*/
private com.amazonaws.internal.SdkInternalList clusterStates;
/**
*
* The pagination token that indicates the next set of results to retrieve.
*
*/
private String marker;
/**
*
* The creation date and time beginning value filter for listing clusters .
*
*
* @param createdAfter
* The creation date and time beginning value filter for listing
* clusters .
*/
public void setCreatedAfter(java.util.Date createdAfter) {
this.createdAfter = createdAfter;
}
/**
*
* The creation date and time beginning value filter for listing clusters .
*
*
* @return The creation date and time beginning value filter for listing
* clusters .
*/
public java.util.Date getCreatedAfter() {
return this.createdAfter;
}
/**
*
* The creation date and time beginning value filter for listing clusters .
*
*
* @param createdAfter
* The creation date and time beginning value filter for listing
* clusters .
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ListClustersRequest withCreatedAfter(java.util.Date createdAfter) {
setCreatedAfter(createdAfter);
return this;
}
/**
*
* The creation date and time end value filter for listing clusters .
*
*
* @param createdBefore
* The creation date and time end value filter for listing clusters .
*/
public void setCreatedBefore(java.util.Date createdBefore) {
this.createdBefore = createdBefore;
}
/**
*
* The creation date and time end value filter for listing clusters .
*
*
* @return The creation date and time end value filter for listing clusters
* .
*/
public java.util.Date getCreatedBefore() {
return this.createdBefore;
}
/**
*
* The creation date and time end value filter for listing clusters .
*
*
* @param createdBefore
* The creation date and time end value filter for listing clusters .
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ListClustersRequest withCreatedBefore(java.util.Date createdBefore) {
setCreatedBefore(createdBefore);
return this;
}
/**
*
* The cluster state filters to apply when listing clusters.
*
*
* @return The cluster state filters to apply when listing clusters.
* @see ClusterState
*/
public java.util.List getClusterStates() {
if (clusterStates == null) {
clusterStates = new com.amazonaws.internal.SdkInternalList();
}
return clusterStates;
}
/**
*
* The cluster state filters to apply when listing clusters.
*
*
* @param clusterStates
* The cluster state filters to apply when listing clusters.
* @see ClusterState
*/
public void setClusterStates(java.util.Collection clusterStates) {
if (clusterStates == null) {
this.clusterStates = null;
return;
}
this.clusterStates = new com.amazonaws.internal.SdkInternalList(
clusterStates);
}
/**
*
* The cluster state filters to apply when listing clusters.
*
*
* NOTE: This method appends the values to the existing list (if
* any). Use {@link #setClusterStates(java.util.Collection)} or
* {@link #withClusterStates(java.util.Collection)} if you want to override
* the existing values.
*
*
* @param clusterStates
* The cluster state filters to apply when listing clusters.
* @return Returns a reference to this object so that method calls can be
* chained together.
* @see ClusterState
*/
public ListClustersRequest withClusterStates(String... clusterStates) {
if (this.clusterStates == null) {
setClusterStates(new com.amazonaws.internal.SdkInternalList(
clusterStates.length));
}
for (String ele : clusterStates) {
this.clusterStates.add(ele);
}
return this;
}
/**
*
* The cluster state filters to apply when listing clusters.
*
*
* @param clusterStates
* The cluster state filters to apply when listing clusters.
* @return Returns a reference to this object so that method calls can be
* chained together.
* @see ClusterState
*/
public ListClustersRequest withClusterStates(
java.util.Collection clusterStates) {
setClusterStates(clusterStates);
return this;
}
/**
*
* The cluster state filters to apply when listing clusters.
*
*
* @param clusterStates
* The cluster state filters to apply when listing clusters.
* @return Returns a reference to this object so that method calls can be
* chained together.
* @see ClusterState
*/
public ListClustersRequest withClusterStates(ClusterState... clusterStates) {
com.amazonaws.internal.SdkInternalList clusterStatesCopy = new com.amazonaws.internal.SdkInternalList(
clusterStates.length);
for (ClusterState value : clusterStates) {
clusterStatesCopy.add(value.toString());
}
if (getClusterStates() == null) {
setClusterStates(clusterStatesCopy);
} else {
getClusterStates().addAll(clusterStatesCopy);
}
return this;
}
/**
*
* The pagination token that indicates the next set of results to retrieve.
*
*
* @param marker
* The pagination token that indicates the next set of results to
* retrieve.
*/
public void setMarker(String marker) {
this.marker = marker;
}
/**
*
* The pagination token that indicates the next set of results to retrieve.
*
*
* @return The pagination token that indicates the next set of results to
* retrieve.
*/
public String getMarker() {
return this.marker;
}
/**
*
* The pagination token that indicates the next set of results to retrieve.
*
*
* @param marker
* The pagination token that indicates the next set of results to
* retrieve.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ListClustersRequest withMarker(String marker) {
setMarker(marker);
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 (getCreatedAfter() != null)
sb.append("CreatedAfter: " + getCreatedAfter() + ",");
if (getCreatedBefore() != null)
sb.append("CreatedBefore: " + getCreatedBefore() + ",");
if (getClusterStates() != null)
sb.append("ClusterStates: " + getClusterStates() + ",");
if (getMarker() != null)
sb.append("Marker: " + getMarker());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListClustersRequest == false)
return false;
ListClustersRequest other = (ListClustersRequest) obj;
if (other.getCreatedAfter() == null ^ this.getCreatedAfter() == null)
return false;
if (other.getCreatedAfter() != null
&& other.getCreatedAfter().equals(this.getCreatedAfter()) == false)
return false;
if (other.getCreatedBefore() == null ^ this.getCreatedBefore() == null)
return false;
if (other.getCreatedBefore() != null
&& other.getCreatedBefore().equals(this.getCreatedBefore()) == false)
return false;
if (other.getClusterStates() == null ^ this.getClusterStates() == null)
return false;
if (other.getClusterStates() != null
&& other.getClusterStates().equals(this.getClusterStates()) == false)
return false;
if (other.getMarker() == null ^ this.getMarker() == null)
return false;
if (other.getMarker() != null
&& other.getMarker().equals(this.getMarker()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime
* hashCode
+ ((getCreatedAfter() == null) ? 0 : getCreatedAfter()
.hashCode());
hashCode = prime
* hashCode
+ ((getCreatedBefore() == null) ? 0 : getCreatedBefore()
.hashCode());
hashCode = prime
* hashCode
+ ((getClusterStates() == null) ? 0 : getClusterStates()
.hashCode());
hashCode = prime * hashCode
+ ((getMarker() == null) ? 0 : getMarker().hashCode());
return hashCode;
}
@Override
public ListClustersRequest clone() {
return (ListClustersRequest) super.clone();
}
}