com.google.code.geocoder.model
Enum GeocoderStatus

java.lang.Object
  extended by java.lang.Enum<GeocoderStatus>
      extended by com.google.code.geocoder.model.GeocoderStatus
All Implemented Interfaces:
Serializable, Comparable<GeocoderStatus>

public enum GeocoderStatus
extends Enum<GeocoderStatus>

Author:
Michael Panchenko

Enum Constant Summary
ERROR
           
INVALID_REQUEST
           
OK
           
OVER_QUERY_LIMIT
           
REQUEST_DENIED
           
UNKNOWN_ERROR
           
ZERO_RESULTS
           
 
Method Summary
static GeocoderStatus fromValue(String v)
           
 String value()
           
static GeocoderStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GeocoderStatus[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ERROR

public static final GeocoderStatus ERROR

INVALID_REQUEST

public static final GeocoderStatus INVALID_REQUEST

OK

public static final GeocoderStatus OK

OVER_QUERY_LIMIT

public static final GeocoderStatus OVER_QUERY_LIMIT

REQUEST_DENIED

public static final GeocoderStatus REQUEST_DENIED

UNKNOWN_ERROR

public static final GeocoderStatus UNKNOWN_ERROR

ZERO_RESULTS

public static final GeocoderStatus ZERO_RESULTS
Method Detail

values

public static GeocoderStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (GeocoderStatus c : GeocoderStatus.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GeocoderStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static GeocoderStatus fromValue(String v)


Copyright © 2013. All Rights Reserved.