All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.code.geocoder.model.GeocoderResult Maven / Gradle / Ivy

package com.google.code.geocoder.model;

import java.io.Serializable;
import java.util.List;

/**
 * @author Michael Panchenko
 */
public class GeocoderResult implements Serializable {
    private static final long serialVersionUID = 1L;

    private List types;
    private String formattedAddress;
    private List addressComponents;
    private GeocoderGeometry geometry;
    private boolean partialMatch;

    public List getTypes() {
        return types;
    }

    public void setTypes(List types) {
        this.types = types;
    }

    public String getFormattedAddress() {
        return formattedAddress;
    }

    public void setFormattedAddress(String formattedAddress) {
        this.formattedAddress = formattedAddress;
    }

    public List getAddressComponents() {
        return addressComponents;
    }

    public void setAddressComponents(List addressComponents) {
        this.addressComponents = addressComponents;
    }

    public GeocoderGeometry getGeometry() {
        return geometry;
    }

    public void setGeometry(GeocoderGeometry geometry) {
        this.geometry = geometry;
    }

    public boolean isPartialMatch() {
        return partialMatch;
    }

    public void setPartialMatch(boolean partialMatch) {
        this.partialMatch = partialMatch;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        GeocoderResult that = (GeocoderResult) o;

        if (partialMatch != that.partialMatch) return false;
        if (addressComponents != null ? !addressComponents.equals(that.addressComponents) : that.addressComponents != null)
            return false;
        if (formattedAddress != null ? !formattedAddress.equals(that.formattedAddress) : that.formattedAddress != null)
            return false;
        if (geometry != null ? !geometry.equals(that.geometry) : that.geometry != null) return false;
        if (types != null ? !types.equals(that.types) : that.types != null) return false;

        return true;
    }

    @Override
    public int hashCode() {
        int result = types != null ? types.hashCode() : 0;
        result = 31 * result + (formattedAddress != null ? formattedAddress.hashCode() : 0);
        result = 31 * result + (addressComponents != null ? addressComponents.hashCode() : 0);
        result = 31 * result + (geometry != null ? geometry.hashCode() : 0);
        result = 31 * result + (partialMatch ? 1 : 0);
        return result;
    }

    @Override
    public String toString() {
        return "GeocoderResult{" +
                "types=" + types +
                ", formattedAddress='" + formattedAddress + '\'' +
                ", addressComponents=" + addressComponents +
                ", geometry=" + geometry +
                ", partialMatch=" + partialMatch +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy