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

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

package com.google.code.geocoder.model;

/**
 * @author Michael Panchenko
 */
public enum GeocoderStatus {

    ERROR,
    INVALID_REQUEST,
    OK,
    OVER_QUERY_LIMIT,
    REQUEST_DENIED,
    UNKNOWN_ERROR,
    ZERO_RESULTS;

    public String value() {
        return name();
    }

    public static GeocoderStatus fromValue(String v) {
        return valueOf(v);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy