software.amazon.awssdk.services.appstream.model.DescribeImagesResponse Maven / Gradle / Ivy
/*
* Copyright 2012-2017 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 software.amazon.awssdk.services.appstream.model;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import javax.annotation.Generated;
import software.amazon.awssdk.AmazonWebServiceResult;
import software.amazon.awssdk.ResponseMetadata;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public class DescribeImagesResponse extends AmazonWebServiceResult implements
ToCopyableBuilder {
private final List images;
private DescribeImagesResponse(BuilderImpl builder) {
this.images = builder.images;
}
/**
*
* The list of images.
*
*
* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
*
*
* @return The list of images.
*/
public List images() {
return images;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + ((images() == null) ? 0 : images().hashCode());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof DescribeImagesResponse)) {
return false;
}
DescribeImagesResponse other = (DescribeImagesResponse) obj;
if (other.images() == null ^ this.images() == null) {
return false;
}
if (other.images() != null && !other.images().equals(this.images())) {
return false;
}
return true;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (images() != null) {
sb.append("Images: ").append(images()).append(",");
}
sb.append("}");
return sb.toString();
}
public interface Builder extends CopyableBuilder {
/**
*
* The list of images.
*
*
* @param images
* The list of images.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder images(Collection images);
/**
*
* The list of images.
*
*
* @param images
* The list of images.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder images(Image... images);
}
private static final class BuilderImpl implements Builder {
private List images;
private BuilderImpl() {
}
private BuilderImpl(DescribeImagesResponse model) {
setImages(model.images);
}
public final Collection getImages() {
return images;
}
@Override
public final Builder images(Collection images) {
this.images = ImageListCopier.copy(images);
return this;
}
@Override
@SafeVarargs
public final Builder images(Image... images) {
images(Arrays.asList(images));
return this;
}
public final void setImages(Collection images) {
this.images = ImageListCopier.copy(images);
}
@Override
public DescribeImagesResponse build() {
return new DescribeImagesResponse(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy