public enum GeocoderLocationType extends Enum<GeocoderLocationType>
Enum Constant and Description |
---|
APPROXIMATE |
GEOMETRIC_CENTER |
RANGE_INTERPOLATED |
ROOFTOP |
Modifier and Type | Method and Description |
---|---|
static GeocoderLocationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeocoderLocationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeocoderLocationType ROOFTOP
public static final GeocoderLocationType RANGE_INTERPOLATED
public static final GeocoderLocationType GEOMETRIC_CENTER
public static final GeocoderLocationType APPROXIMATE
public static GeocoderLocationType[] values()
for (GeocoderLocationType c : GeocoderLocationType.values()) System.out.println(c);
public static GeocoderLocationType 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 © 2016. All Rights Reserved.