/* * Copyright 2018-2023 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.outposts.model; import java.io.Serializable; import javax.annotation.Generated; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class UpdateSiteAddressResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable { /** *

* The type of the address. *

*/ private String addressType; /** *

* Information about an address. *

*/ private Address address; /** *

* The type of the address. *

* * @param addressType * The type of the address. * @see AddressType */ public void setAddressType(String addressType) { this.addressType = addressType; } /** *

* The type of the address. *

* * @return The type of the address. * @see AddressType */ public String getAddressType() { return this.addressType; } /** *

* The type of the address. *

* * @param addressType * The type of the address. * @return Returns a reference to this object so that method calls can be chained together. * @see AddressType */ public UpdateSiteAddressResult withAddressType(String addressType) { setAddressType(addressType); return this; } /** *

* The type of the address. *

* * @param addressType * The type of the address. * @return Returns a reference to this object so that method calls can be chained together. * @see AddressType */ public UpdateSiteAddressResult withAddressType(AddressType addressType) { this.addressType = addressType.toString(); return this; } /** *

* Information about an address. *

* * @param address * Information about an address. */ public void setAddress(Address address) { this.address = address; } /** *

* Information about an address. *

* * @return Information about an address. */ public Address getAddress() { return this.address; } /** *

* Information about an address. *

* * @param address * Information about an address. * @return Returns a reference to this object so that method calls can be chained together. */ public UpdateSiteAddressResult withAddress(Address address) { setAddress(address); 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 (getAddressType() != null) sb.append("AddressType: ").append(getAddressType()).append(","); if (getAddress() != null) sb.append("Address: ").append(getAddress()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UpdateSiteAddressResult == false) return false; UpdateSiteAddressResult other = (UpdateSiteAddressResult) obj; if (other.getAddressType() == null ^ this.getAddressType() == null) return false; if (other.getAddressType() != null && other.getAddressType().equals(this.getAddressType()) == false) return false; if (other.getAddress() == null ^ this.getAddress() == null) return false; if (other.getAddress() != null && other.getAddress().equals(this.getAddress()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAddressType() == null) ? 0 : getAddressType().hashCode()); hashCode = prime * hashCode + ((getAddress() == null) ? 0 : getAddress().hashCode()); return hashCode; } @Override public UpdateSiteAddressResult clone() { try { return (UpdateSiteAddressResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }