public static enum Location.LatLong.GeoAccuracy extends java.lang.Enum<Location.LatLong.GeoAccuracy>
Enum Constant and Description |
---|
CITY |
COUNTRY |
POSTAL_CODE |
ROOF_TOP |
STATE |
STREET |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static Location.LatLong.GeoAccuracy |
forValue(java.lang.String value) |
java.lang.String |
toString() |
static Location.LatLong.GeoAccuracy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Location.LatLong.GeoAccuracy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Location.LatLong.GeoAccuracy ROOF_TOP
public static final Location.LatLong.GeoAccuracy STREET
public static final Location.LatLong.GeoAccuracy POSTAL_CODE
public static final Location.LatLong.GeoAccuracy CITY
public static final Location.LatLong.GeoAccuracy STATE
public static final Location.LatLong.GeoAccuracy COUNTRY
public static final Location.LatLong.GeoAccuracy UNKNOWN
public static Location.LatLong.GeoAccuracy[] values()
for (Location.LatLong.GeoAccuracy c : Location.LatLong.GeoAccuracy.values()) System.out.println(c);
public static Location.LatLong.GeoAccuracy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Location.LatLong.GeoAccuracy>
public static Location.LatLong.GeoAccuracy forValue(java.lang.String value)