com.amazonaws.services.storagegateway.model.DescribeTapesResult Maven / Gradle / Ivy
/*
* 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.storagegateway.model;
import java.io.Serializable;
/**
*
* DescribeTapesOutput
*
*/
public class DescribeTapesResult implements Serializable, Cloneable {
/**
*
* An array of virtual tape descriptions.
*
*/
private com.amazonaws.internal.SdkInternalList tapes;
/**
*
* An opaque string which can be used as part of a subsequent DescribeTapes
* call to retrieve the next page of results.
*
*
* If a response does not contain a marker, then there are no more results
* to be retrieved.
*
*/
private String marker;
/**
*
* An array of virtual tape descriptions.
*
*
* @return An array of virtual tape descriptions.
*/
public java.util.List getTapes() {
if (tapes == null) {
tapes = new com.amazonaws.internal.SdkInternalList();
}
return tapes;
}
/**
*
* An array of virtual tape descriptions.
*
*
* @param tapes
* An array of virtual tape descriptions.
*/
public void setTapes(java.util.Collection tapes) {
if (tapes == null) {
this.tapes = null;
return;
}
this.tapes = new com.amazonaws.internal.SdkInternalList(tapes);
}
/**
*
* An array of virtual tape descriptions.
*
*
* NOTE: This method appends the values to the existing list (if
* any). Use {@link #setTapes(java.util.Collection)} or
* {@link #withTapes(java.util.Collection)} if you want to override the
* existing values.
*
*
* @param tapes
* An array of virtual tape descriptions.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DescribeTapesResult withTapes(Tape... tapes) {
if (this.tapes == null) {
setTapes(new com.amazonaws.internal.SdkInternalList(
tapes.length));
}
for (Tape ele : tapes) {
this.tapes.add(ele);
}
return this;
}
/**
*
* An array of virtual tape descriptions.
*
*
* @param tapes
* An array of virtual tape descriptions.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DescribeTapesResult withTapes(java.util.Collection tapes) {
setTapes(tapes);
return this;
}
/**
*
* An opaque string which can be used as part of a subsequent DescribeTapes
* call to retrieve the next page of results.
*
*
* If a response does not contain a marker, then there are no more results
* to be retrieved.
*
*
* @param marker
* An opaque string which can be used as part of a subsequent
* DescribeTapes call to retrieve the next page of results.
*
* If a response does not contain a marker, then there are no more
* results to be retrieved.
*/
public void setMarker(String marker) {
this.marker = marker;
}
/**
*
* An opaque string which can be used as part of a subsequent DescribeTapes
* call to retrieve the next page of results.
*
*
* If a response does not contain a marker, then there are no more results
* to be retrieved.
*
*
* @return An opaque string which can be used as part of a subsequent
* DescribeTapes call to retrieve the next page of results.
*
* If a response does not contain a marker, then there are no more
* results to be retrieved.
*/
public String getMarker() {
return this.marker;
}
/**
*
* An opaque string which can be used as part of a subsequent DescribeTapes
* call to retrieve the next page of results.
*
*
* If a response does not contain a marker, then there are no more results
* to be retrieved.
*
*
* @param marker
* An opaque string which can be used as part of a subsequent
* DescribeTapes call to retrieve the next page of results.
*
* If a response does not contain a marker, then there are no more
* results to be retrieved.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public DescribeTapesResult 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 (getTapes() != null)
sb.append("Tapes: " + getTapes() + ",");
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 DescribeTapesResult == false)
return false;
DescribeTapesResult other = (DescribeTapesResult) obj;
if (other.getTapes() == null ^ this.getTapes() == null)
return false;
if (other.getTapes() != null
&& other.getTapes().equals(this.getTapes()) == 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
+ ((getTapes() == null) ? 0 : getTapes().hashCode());
hashCode = prime * hashCode
+ ((getMarker() == null) ? 0 : getMarker().hashCode());
return hashCode;
}
@Override
public DescribeTapesResult clone() {
try {
return (DescribeTapesResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException(
"Got a CloneNotSupportedException from Object.clone() "
+ "even though we're Cloneable!", e);
}
}
}