public enum GeocodeType extends Enum<GeocodeType>
| Enum Constant and Description |
|---|
ADDRESS
Geocode to the best address coordinate (point or street level) available
|
GEOGRAPHIC
Geocode to the best geographic centroid level available
|
POSTAL
Geocode to the best postal centroid level available
|
| Modifier and Type | Method and Description |
|---|---|
static GeocodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeocodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeocodeType ADDRESS
public static final GeocodeType GEOGRAPHIC
public static final GeocodeType POSTAL
public static GeocodeType[] values()
for (GeocodeType c : GeocodeType.values()) System.out.println(c);
public static GeocodeType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.