Example usage for com.google.gwt.maps.client.geocode StatusCodes MISSING_ADDRESS

List of usage examples for com.google.gwt.maps.client.geocode StatusCodes MISSING_ADDRESS

Introduction

In this page you can find the example usage for com.google.gwt.maps.client.geocode StatusCodes MISSING_ADDRESS.

Prototype

int MISSING_ADDRESS

To view the source code for com.google.gwt.maps.client.geocode StatusCodes MISSING_ADDRESS.

Click Source Link

Document

Synonym for StatusCodes#MISSING_QUERY .

Usage

From source file:org.maps.client.Maps.java

License:Apache License

private String getMessage(int statusCode) {
    String answer = "Unknown reason";
    if (statusCode == StatusCodes.API_ERROR) {
        answer = "API Error";
    } else if (statusCode == StatusCodes.BAD_KEY) {
        answer = "Bad Key";
    } else if (statusCode == StatusCodes.BAD_REQUEST) {
        answer = "Bad Request";
    } else if (statusCode == StatusCodes.MISSING_ADDRESS) {
        answer = "Missing Address";
    } else if (statusCode == StatusCodes.SERVER_ERROR) {
        answer = "Google Server Error";
    } else if (statusCode == StatusCodes.MISSING_QUERY) {
        answer = "Missing Queury";
    } else if (statusCode == StatusCodes.SUCCESS) {
        answer = "Success";
    } else if (statusCode == StatusCodes.TOO_MANY_QUERIES) {
        answer = "Too Many Queries";
    } else if (statusCode == StatusCodes.UNAVAILABLE_ADDRESS) {
        answer = "Unavailable Address";
    } else if (statusCode == StatusCodes.UNKNOWN_ADDRESS) {
        answer = "Unknown Address";
    } else if (statusCode == StatusCodes.UNKNOWN_DIRECTIONS) {
        answer = "Unknown Directions";
    }/*from  w w w .  j av a2  s .  c  o m*/
    return answer;
}