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

com.amazonaws.services.elasticmapreduce.model.ListStudiosResult Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
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.elasticmapreduce.model;

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

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

    /**
     * 

* The list of Studio summary objects. *

*/ private com.amazonaws.internal.SdkInternalList studios; /** *

* The pagination token that indicates the next set of results to retrieve. *

*/ private String marker; /** *

* The list of Studio summary objects. *

* * @return The list of Studio summary objects. */ public java.util.List getStudios() { if (studios == null) { studios = new com.amazonaws.internal.SdkInternalList(); } return studios; } /** *

* The list of Studio summary objects. *

* * @param studios * The list of Studio summary objects. */ public void setStudios(java.util.Collection studios) { if (studios == null) { this.studios = null; return; } this.studios = new com.amazonaws.internal.SdkInternalList(studios); } /** *

* The list of Studio summary objects. *

*

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

* * @param studios * The list of Studio summary objects. * @return Returns a reference to this object so that method calls can be chained together. */ public ListStudiosResult withStudios(StudioSummary... studios) { if (this.studios == null) { setStudios(new com.amazonaws.internal.SdkInternalList(studios.length)); } for (StudioSummary ele : studios) { this.studios.add(ele); } return this; } /** *

* The list of Studio summary objects. *

* * @param studios * The list of Studio summary objects. * @return Returns a reference to this object so that method calls can be chained together. */ public ListStudiosResult withStudios(java.util.Collection studios) { setStudios(studios); 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 ListStudiosResult withMarker(String marker) { setMarker(marker); 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 (getStudios() != null) sb.append("Studios: ").append(getStudios()).append(","); if (getMarker() != null) sb.append("Marker: ").append(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 ListStudiosResult == false) return false; ListStudiosResult other = (ListStudiosResult) obj; if (other.getStudios() == null ^ this.getStudios() == null) return false; if (other.getStudios() != null && other.getStudios().equals(this.getStudios()) == 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 + ((getStudios() == null) ? 0 : getStudios().hashCode()); hashCode = prime * hashCode + ((getMarker() == null) ? 0 : getMarker().hashCode()); return hashCode; } @Override public ListStudiosResult clone() { try { return (ListStudiosResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy