org.immutables.fixture.jackson.ImmutableGeoPoint Maven / Gradle / Ivy
package org.immutables.fixture.jackson;
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.common.base.Preconditions;
import com.google.common.collect.Lists;
import com.google.common.primitives.Doubles;
import java.util.List;
import javax.annotation.Generated;
import javax.annotation.Nullable;
import javax.annotation.ParametersAreNonnullByDefault;
import javax.annotation.concurrent.Immutable;
import javax.annotation.concurrent.NotThreadSafe;
/**
* Immutable implementation of {@link GeoPoint}.
*
* Use the builder to create immutable instances:
* {@code ImmutableGeoPoint.builder()}.
*/
@SuppressWarnings("all")
@ParametersAreNonnullByDefault
@Generated({"Immutables.generator", "GeoPoint"})
@Immutable
public final class ImmutableGeoPoint extends GeoPoint {
private final double longitude;
private final double latitude;
private final double altitude;
private ImmutableGeoPoint(double longitude, double latitude, double altitude) {
this.longitude = longitude;
this.latitude = latitude;
this.altitude = altitude;
}
/**
* @return The value of the {@code longitude} attribute
*/
@JsonProperty("longitude")
@Override
public double longitude() {
return longitude;
}
/**
* @return The value of the {@code latitude} attribute
*/
@JsonProperty("latitude")
@Override
public double latitude() {
return latitude;
}
/**
* @return The value of the {@code altitude} attribute
*/
@JsonProperty("altitude")
@Override
public double altitude() {
return altitude;
}
/**
* Copy the current immutable object by setting a value for the {@link GeoPoint#longitude() longitude} attribute.
* A value strict bits equality used to prevent copying of the same value by returning {@code this}.
* @param longitude A new value for longitude
* @return A modified copy of the {@code this} object
*/
public final ImmutableGeoPoint withLongitude(double longitude) {
if (Double.doubleToLongBits(this.longitude) == Double.doubleToLongBits(longitude)) return this;
return new ImmutableGeoPoint(longitude, this.latitude, this.altitude);
}
/**
* Copy the current immutable object by setting a value for the {@link GeoPoint#latitude() latitude} attribute.
* A value strict bits equality used to prevent copying of the same value by returning {@code this}.
* @param latitude A new value for latitude
* @return A modified copy of the {@code this} object
*/
public final ImmutableGeoPoint withLatitude(double latitude) {
if (Double.doubleToLongBits(this.latitude) == Double.doubleToLongBits(latitude)) return this;
return new ImmutableGeoPoint(this.longitude, latitude, this.altitude);
}
/**
* Copy the current immutable object by setting a value for the {@link GeoPoint#altitude() altitude} attribute.
* A value strict bits equality used to prevent copying of the same value by returning {@code this}.
* @param altitude A new value for altitude
* @return A modified copy of the {@code this} object
*/
public final ImmutableGeoPoint withAltitude(double altitude) {
if (Double.doubleToLongBits(this.altitude) == Double.doubleToLongBits(altitude)) return this;
return new ImmutableGeoPoint(this.longitude, this.latitude, altitude);
}
/**
* This instance is equal to all instances of {@code ImmutableGeoPoint} 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 ImmutableGeoPoint
&& equalTo((ImmutableGeoPoint) another);
}
private boolean equalTo(ImmutableGeoPoint another) {
return Double.doubleToLongBits(longitude) == Double.doubleToLongBits(another.longitude)
&& Double.doubleToLongBits(latitude) == Double.doubleToLongBits(another.latitude)
&& Double.doubleToLongBits(altitude) == Double.doubleToLongBits(another.altitude);
}
/**
* Computes a hash code from attributes: {@code longitude}, {@code latitude}, {@code altitude}.
* @return hashCode value
*/
@Override
public int hashCode() {
int h = 31;
h = h * 17 + Doubles.hashCode(longitude);
h = h * 17 + Doubles.hashCode(latitude);
h = h * 17 + Doubles.hashCode(altitude);
return h;
}
/**
* Prints the immutable value {@code GeoPoint} with attribute values.
* @return A string representation of the value
*/
@Override
public String toString() {
return MoreObjects.toStringHelper("GeoPoint")
.omitNullValues()
.add("longitude", longitude)
.add("latitude", latitude)
.add("altitude", altitude)
.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
*/
@Deprecated
@JsonDeserialize
static final class Json extends GeoPoint {
@Nullable Double longitude;
@Nullable Double latitude;
@Nullable Double altitude;
@JsonProperty("longitude")
public void setLongitude(double longitude) {
this.longitude = longitude;
}
@JsonProperty("latitude")
public void setLatitude(double latitude) {
this.latitude = latitude;
}
@JsonProperty("altitude")
public void setAltitude(double altitude) {
this.altitude = altitude;
}
@Override
public double longitude() { throw new UnsupportedOperationException(); }
@Override
public double latitude() { throw new UnsupportedOperationException(); }
@Override
public double altitude() { 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
static ImmutableGeoPoint fromJson(Json json) {
ImmutableGeoPoint.Builder builder = ImmutableGeoPoint.builder();
if (json.longitude != null) {
builder.longitude(json.longitude);
}
if (json.latitude != null) {
builder.latitude(json.latitude);
}
if (json.altitude != null) {
builder.altitude(json.altitude);
}
return builder.build();
}
/**
* Creates an immutable copy of a {@link GeoPoint} 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 GeoPoint instance
*/
public static ImmutableGeoPoint copyOf(GeoPoint instance) {
if (instance instanceof ImmutableGeoPoint) {
return (ImmutableGeoPoint) instance;
}
return ImmutableGeoPoint.builder()
.from(instance)
.build();
}
/**
* Creates a builder for {@link ImmutableGeoPoint ImmutableGeoPoint}.
* @return A new ImmutableGeoPoint builder
*/
public static ImmutableGeoPoint.Builder builder() {
return new ImmutableGeoPoint.Builder();
}
/**
* Builds instances of type {@link ImmutableGeoPoint ImmutableGeoPoint}.
* 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.
*/
@NotThreadSafe
public static final class Builder {
private static final long INIT_BIT_LONGITUDE = 0x1L;
private static final long INIT_BIT_LATITUDE = 0x2L;
private static final long INIT_BIT_ALTITUDE = 0x4L;
private long initBits = 0x7L;
private double longitude;
private double latitude;
private double altitude;
private Builder() {
}
/**
* Fill a builder with attribute values from the provided {@code GeoPoint} 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
*/
public final Builder from(GeoPoint instance) {
Preconditions.checkNotNull(instance, "instance");
longitude(instance.longitude());
latitude(instance.latitude());
altitude(instance.altitude());
return this;
}
/**
* Initializes the value for the {@link GeoPoint#longitude() longitude} attribute.
* @param longitude The value for longitude
* @return {@code this} builder for use in a chained invocation
*/
public final Builder longitude(double longitude) {
this.longitude = longitude;
initBits &= ~INIT_BIT_LONGITUDE;
return this;
}
/**
* Initializes the value for the {@link GeoPoint#latitude() latitude} attribute.
* @param latitude The value for latitude
* @return {@code this} builder for use in a chained invocation
*/
public final Builder latitude(double latitude) {
this.latitude = latitude;
initBits &= ~INIT_BIT_LATITUDE;
return this;
}
/**
* Initializes the value for the {@link GeoPoint#altitude() altitude} attribute.
* @param altitude The value for altitude
* @return {@code this} builder for use in a chained invocation
*/
public final Builder altitude(double altitude) {
this.altitude = altitude;
initBits &= ~INIT_BIT_ALTITUDE;
return this;
}
/**
* Builds a new {@link ImmutableGeoPoint ImmutableGeoPoint}.
* @return An immutable instance of GeoPoint
* @throws java.lang.IllegalStateException if any required attributes are missing
*/
public ImmutableGeoPoint build() {
if (initBits != 0) {
throw new IllegalStateException(formatRequiredAttributesMessage());
}
return new ImmutableGeoPoint(longitude, latitude, altitude);
}
private String formatRequiredAttributesMessage() {
List attributes = Lists.newArrayList();
if ((initBits & INIT_BIT_LONGITUDE) != 0) attributes.add("longitude");
if ((initBits & INIT_BIT_LATITUDE) != 0) attributes.add("latitude");
if ((initBits & INIT_BIT_ALTITUDE) != 0) attributes.add("altitude");
return "Cannot build GeoPoint, some of required attributes are not set " + attributes;
}
}
}