com.google.code.geocoder.model
Enum GeocoderStatus
java.lang.Object
java.lang.Enum<GeocoderStatus>
com.google.code.geocoder.model.GeocoderStatus
- All Implemented Interfaces:
- Serializable, Comparable<GeocoderStatus>
public enum GeocoderStatus
- extends Enum<GeocoderStatus>
- Author:
- Michael Panchenko
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
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.