public static enum GeocodingRequest.Option extends Enum<GeocodingRequest.Option>
| Enum Constant and Description |
|---|
CLOSE_LOCATION
Defines an origin point location that is used to sort geocoding candidates based on their proximity to the location.
|
FOR_STORAGE
Specifies whether the results of the operation will be persisted, if true an authentication is required and
the operation execution will be charged to the account
|
MAX_LOCATIONS
If more geocode candidates are supposed to be returned; by default only the one best fitting candidate is returned
|
SEARCH_EXTENT
A set of bounding box coordinates that limit the search area to a specific region, e.g.
|
SOURCE_COUNTRY
Limits the candidates returned by the findAddressCandidates operation to the specified country or countries,
e.g.
|
SPATIAL_REFERENCE
The spatial reference of the x/y coordinates returned by a geocode request, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static GeocodingRequest.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeocodingRequest.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeocodingRequest.Option SOURCE_COUNTRY
public static final GeocodingRequest.Option SEARCH_EXTENT
public static final GeocodingRequest.Option CLOSE_LOCATION
public static final GeocodingRequest.Option SPATIAL_REFERENCE
public static final GeocodingRequest.Option MAX_LOCATIONS
public static final GeocodingRequest.Option FOR_STORAGE
public static GeocodingRequest.Option[] values()
for (GeocodingRequest.Option c : GeocodingRequest.Option.values()) System.out.println(c);
public static GeocodingRequest.Option 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 © 2017. All rights reserved.