io.thestencil.iam.api.ImmutableAddress Maven / Gradle / Ivy
package io.thestencil.iam.api;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.google.common.base.MoreObjects;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import com.google.errorprone.annotations.Var;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import javax.annotation.CheckReturnValue;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;
import org.immutables.value.Generated;
/**
* Immutable implementation of {@link IAMClient.Address}.
*
* Use the builder to create immutable instances:
* {@code ImmutableAddress.builder()}.
*/
@Generated(from = "IAMClient.Address", generator = "Immutables")
@SuppressWarnings({"all"})
@ParametersAreNonnullByDefault
@javax.annotation.processing.Generated("org.immutables.processor.ProxyProcessor")
@Immutable
@CheckReturnValue
public final class ImmutableAddress implements IAMClient.Address {
private final String locality;
private final String street;
private final String postalCode;
private final String country;
private ImmutableAddress(
String locality,
String street,
String postalCode,
String country) {
this.locality = locality;
this.street = street;
this.postalCode = postalCode;
this.country = country;
}
/**
* @return The value of the {@code locality} attribute
*/
@JsonProperty("locality")
@Override
public String getLocality() {
return locality;
}
/**
* @return The value of the {@code street} attribute
*/
@JsonProperty("street")
@Override
public String getStreet() {
return street;
}
/**
* @return The value of the {@code postalCode} attribute
*/
@JsonProperty("postalCode")
@Override
public String getPostalCode() {
return postalCode;
}
/**
* @return The value of the {@code country} attribute
*/
@JsonProperty("country")
@Override
public String getCountry() {
return country;
}
/**
* Copy the current immutable object by setting a value for the {@link IAMClient.Address#getLocality() locality} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for locality
* @return A modified copy of the {@code this} object
*/
public final ImmutableAddress withLocality(String value) {
String newValue = Objects.requireNonNull(value, "locality");
if (this.locality.equals(newValue)) return this;
return new ImmutableAddress(newValue, this.street, this.postalCode, this.country);
}
/**
* Copy the current immutable object by setting a value for the {@link IAMClient.Address#getStreet() street} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for street
* @return A modified copy of the {@code this} object
*/
public final ImmutableAddress withStreet(String value) {
String newValue = Objects.requireNonNull(value, "street");
if (this.street.equals(newValue)) return this;
return new ImmutableAddress(this.locality, newValue, this.postalCode, this.country);
}
/**
* Copy the current immutable object by setting a value for the {@link IAMClient.Address#getPostalCode() postalCode} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for postalCode
* @return A modified copy of the {@code this} object
*/
public final ImmutableAddress withPostalCode(String value) {
String newValue = Objects.requireNonNull(value, "postalCode");
if (this.postalCode.equals(newValue)) return this;
return new ImmutableAddress(this.locality, this.street, newValue, this.country);
}
/**
* Copy the current immutable object by setting a value for the {@link IAMClient.Address#getCountry() country} attribute.
* An equals check used to prevent copying of the same value by returning {@code this}.
* @param value A new value for country
* @return A modified copy of the {@code this} object
*/
public final ImmutableAddress withCountry(String value) {
String newValue = Objects.requireNonNull(value, "country");
if (this.country.equals(newValue)) return this;
return new ImmutableAddress(this.locality, this.street, this.postalCode, newValue);
}
/**
* This instance is equal to all instances of {@code ImmutableAddress} that have equal attribute values.
* @return {@code true} if {@code this} is equal to {@code another} instance
*/
@Override
public boolean equals(@Nullable Object another) {
if (this == another) return true;
return another instanceof ImmutableAddress
&& equalTo((ImmutableAddress) another);
}
private boolean equalTo(ImmutableAddress another) {
return locality.equals(another.locality)
&& street.equals(another.street)
&& postalCode.equals(another.postalCode)
&& country.equals(another.country);
}
/**
* Computes a hash code from attributes: {@code locality}, {@code street}, {@code postalCode}, {@code country}.
* @return hashCode value
*/
@Override
public int hashCode() {
@Var int h = 5381;
h += (h << 5) + locality.hashCode();
h += (h << 5) + street.hashCode();
h += (h << 5) + postalCode.hashCode();
h += (h << 5) + country.hashCode();
return h;
}
/**
* Prints the immutable value {@code Address} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("Address")
.omitNullValues()
.add("locality", locality)
.add("street", street)
.add("postalCode", postalCode)
.add("country", country)
.toString();
}
/**
* Utility type used to correctly read immutable object from JSON representation.
* @deprecated Do not use this type directly, it exists only for the Jackson-binding infrastructure
*/
@Generated(from = "IAMClient.Address", generator = "Immutables")
@Deprecated
@SuppressWarnings("Immutable")
@JsonDeserialize
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.NONE)
static final class Json implements IAMClient.Address {
@Nullable String locality;
@Nullable String street;
@Nullable String postalCode;
@Nullable String country;
@JsonProperty("locality")
public void setLocality(String locality) {
this.locality = locality;
}
@JsonProperty("street")
public void setStreet(String street) {
this.street = street;
}
@JsonProperty("postalCode")
public void setPostalCode(String postalCode) {
this.postalCode = postalCode;
}
@JsonProperty("country")
public void setCountry(String country) {
this.country = country;
}
@Override
public String getLocality() { throw new UnsupportedOperationException(); }
@Override
public String getStreet() { throw new UnsupportedOperationException(); }
@Override
public String getPostalCode() { throw new UnsupportedOperationException(); }
@Override
public String getCountry() { throw new UnsupportedOperationException(); }
}
/**
* @param json A JSON-bindable data structure
* @return An immutable value type
* @deprecated Do not use this method directly, it exists only for the Jackson-binding infrastructure
*/
@Deprecated
@JsonCreator(mode = JsonCreator.Mode.DELEGATING)
static ImmutableAddress fromJson(Json json) {
ImmutableAddress.Builder builder = ImmutableAddress.builder();
if (json.locality != null) {
builder.locality(json.locality);
}
if (json.street != null) {
builder.street(json.street);
}
if (json.postalCode != null) {
builder.postalCode(json.postalCode);
}
if (json.country != null) {
builder.country(json.country);
}
return builder.build();
}
/**
* Creates an immutable copy of a {@link IAMClient.Address} value.
* Uses accessors to get values to initialize the new immutable instance.
* If an instance is already immutable, it is returned as is.
* @param instance The instance to copy
* @return A copied immutable Address instance
*/
public static ImmutableAddress copyOf(IAMClient.Address instance) {
if (instance instanceof ImmutableAddress) {
return (ImmutableAddress) instance;
}
return ImmutableAddress.builder()
.from(instance)
.build();
}
/**
* Creates a builder for {@link ImmutableAddress ImmutableAddress}.
*
* ImmutableAddress.builder()
* .locality(String) // required {@link IAMClient.Address#getLocality() locality}
* .street(String) // required {@link IAMClient.Address#getStreet() street}
* .postalCode(String) // required {@link IAMClient.Address#getPostalCode() postalCode}
* .country(String) // required {@link IAMClient.Address#getCountry() country}
* .build();
*
* @return A new ImmutableAddress builder
*/
public static ImmutableAddress.Builder builder() {
return new ImmutableAddress.Builder();
}
/**
* Builds instances of type {@link ImmutableAddress ImmutableAddress}.
* Initialize attributes and then invoke the {@link #build()} method to create an
* immutable instance.
* {@code Builder} is not thread-safe and generally should not be stored in a field or collection,
* but instead used immediately to create instances.
*/
@Generated(from = "IAMClient.Address", generator = "Immutables")
@NotThreadSafe
public static final class Builder {
private static final long INIT_BIT_LOCALITY = 0x1L;
private static final long INIT_BIT_STREET = 0x2L;
private static final long INIT_BIT_POSTAL_CODE = 0x4L;
private static final long INIT_BIT_COUNTRY = 0x8L;
private long initBits = 0xfL;
private @Nullable String locality;
private @Nullable String street;
private @Nullable String postalCode;
private @Nullable String country;
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code Address} instance.
* Regular attribute values will be replaced with those from the given instance.
* Absent optional values will not replace present values.
* @param instance The instance from which to copy values
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
public final Builder from(IAMClient.Address instance) {
Objects.requireNonNull(instance, "instance");
locality(instance.getLocality());
street(instance.getStreet());
postalCode(instance.getPostalCode());
country(instance.getCountry());
return this;
}
/**
* Initializes the value for the {@link IAMClient.Address#getLocality() locality} attribute.
* @param locality The value for locality
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
@JsonProperty("locality")
public final Builder locality(String locality) {
this.locality = Objects.requireNonNull(locality, "locality");
initBits &= ~INIT_BIT_LOCALITY;
return this;
}
/**
* Initializes the value for the {@link IAMClient.Address#getStreet() street} attribute.
* @param street The value for street
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
@JsonProperty("street")
public final Builder street(String street) {
this.street = Objects.requireNonNull(street, "street");
initBits &= ~INIT_BIT_STREET;
return this;
}
/**
* Initializes the value for the {@link IAMClient.Address#getPostalCode() postalCode} attribute.
* @param postalCode The value for postalCode
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
@JsonProperty("postalCode")
public final Builder postalCode(String postalCode) {
this.postalCode = Objects.requireNonNull(postalCode, "postalCode");
initBits &= ~INIT_BIT_POSTAL_CODE;
return this;
}
/**
* Initializes the value for the {@link IAMClient.Address#getCountry() country} attribute.
* @param country The value for country
* @return {@code this} builder for use in a chained invocation
*/
@CanIgnoreReturnValue
@JsonProperty("country")
public final Builder country(String country) {
this.country = Objects.requireNonNull(country, "country");
initBits &= ~INIT_BIT_COUNTRY;
return this;
}
/**
* Builds a new {@link ImmutableAddress ImmutableAddress}.
* @return An immutable instance of Address
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public ImmutableAddress build() {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
return new ImmutableAddress(locality, street, postalCode, country);
}
private String formatRequiredAttributesMessage() {
List attributes = new ArrayList<>();
if ((initBits & INIT_BIT_LOCALITY) != 0) attributes.add("locality");
if ((initBits & INIT_BIT_STREET) != 0) attributes.add("street");
if ((initBits & INIT_BIT_POSTAL_CODE) != 0) attributes.add("postalCode");
if ((initBits & INIT_BIT_COUNTRY) != 0) attributes.add("country");
return "Cannot build Address, some of required attributes are not set " + attributes;
}
}
}