com.amazonaws.services.storagegateway.model.DescribeTapesResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk Show documentation
/*
* Copyright 2010-2014 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 {
/**
* An array of virtual tape descriptions.
*/
private com.amazonaws.internal.ListWithAutoConstructFlag 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.
*
* Constraints:
* Length: 1 - 1000
*/
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.ListWithAutoConstructFlag();
tapes.setAutoConstruct(true);
}
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;
}
com.amazonaws.internal.ListWithAutoConstructFlag tapesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tapes.size());
tapesCopy.addAll(tapes);
this.tapes = tapesCopy;
}
/**
* An array of virtual tape descriptions.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param tapes An array of virtual tape descriptions.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeTapesResult withTapes(Tape... tapes) {
if (getTapes() == null) setTapes(new java.util.ArrayList(tapes.length));
for (Tape value : tapes) {
getTapes().add(value);
}
return this;
}
/**
* An array of virtual tape descriptions.
*
* Returns a reference to this object so that method calls can be chained together.
*
* @param tapes An array of virtual tape descriptions.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeTapesResult withTapes(java.util.Collection tapes) {
if (tapes == null) {
this.tapes = null;
} else {
com.amazonaws.internal.ListWithAutoConstructFlag tapesCopy = new com.amazonaws.internal.ListWithAutoConstructFlag(tapes.size());
tapesCopy.addAll(tapes);
this.tapes = tapesCopy;
}
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.
*
* Constraints:
* Length: 1 - 1000
*
* @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 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.
*
* Constraints:
* Length: 1 - 1000
*
* @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.
*
* Returns a reference to this object so that method calls can be chained together.
*
* Constraints:
* Length: 1 - 1000
*
* @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 A reference to this updated object so that method calls can be chained
* together.
*/
public DescribeTapesResult withMarker(String marker) {
this.marker = 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 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 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;
}
}