
com.google.code.geocoder.model.GeocoderGeometry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geocoder-java Show documentation
Show all versions of geocoder-java Show documentation
Java API for Google geocoder v3
The newest version!
package com.google.code.geocoder.model;
import java.io.Serializable;
/**
* @author Michael Panchenko
*/
public class GeocoderGeometry implements Serializable {
private static final long serialVersionUID = 1L;
private LatLng location;
private GeocoderLocationType locationType;
private LatLngBounds viewport;
private LatLngBounds bounds;
public LatLng getLocation() {
return location;
}
public void setLocation(LatLng location) {
this.location = location;
}
public GeocoderLocationType getLocationType() {
return locationType;
}
public void setLocationType(GeocoderLocationType locationType) {
this.locationType = locationType;
}
public LatLngBounds getViewport() {
return viewport;
}
public void setViewport(LatLngBounds viewport) {
this.viewport = viewport;
}
public LatLngBounds getBounds() {
return bounds;
}
public void setBounds(LatLngBounds bounds) {
this.bounds = bounds;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GeocoderGeometry that = (GeocoderGeometry) o;
if (location != null ? !location.equals(that.location) : that.location != null) return false;
if (locationType != that.locationType) return false;
if (viewport != null ? !viewport.equals(that.viewport) : that.viewport != null) return false;
if (bounds != null ? !bounds.equals(that.bounds) : that.bounds != null) return false;
return true;
}
@Override
public int hashCode() {
int result = location != null ? location.hashCode() : 0;
result = 31 * result + (locationType != null ? locationType.hashCode() : 0);
result = 31 * result + (viewport != null ? viewport.hashCode() : 0);
result = 31 * result + (bounds != null ? bounds.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "GeocoderGeometry{" +
"location=" + location +
", locationType=" + locationType +
", viewport=" + viewport +
", bounds=" + bounds +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy