public enum AddressType extends java.lang.Enum<AddressType> implements com.google.maps.internal.StringJoin.UrlValue
Enum Constant and Description |
---|
ACCOUNTING
Currently not a documented return type.
|
ADMINISTRATIVE_AREA_LEVEL_1
A first-order civil entity below the country level.
|
ADMINISTRATIVE_AREA_LEVEL_2
A second-order civil entity below the country level.
|
ADMINISTRATIVE_AREA_LEVEL_3
A third-order civil entity below the country level.
|
ADMINISTRATIVE_AREA_LEVEL_4
A fourth-order civil entity below the country level.
|
ADMINISTRATIVE_AREA_LEVEL_5
A fifth-order civil entity below the country level.
|
AIRPORT
An airport.
|
BUS_STATION
The location of a bus stop.
|
CAR_DEALER
Currently not a documented return type.
|
CAR_REPAIR
Currently not a documented return type.
|
CHURCH
The location of a church.
|
COLLOQUIAL_AREA
A commonly-used alternative name for the entity.
|
COUNTRY
The national political entity, typically the highest order type returned by the Geocoder.
|
ESTABLISHMENT
A place that has not yet been categorized.
|
FINANCE
The location of a finance institute.
|
FOOD
Currently not a documented return type.
|
FURNITURE_STORE
Currently not a documented return type.
|
GAS_STATION
Currently not a documented return type.
|
GROCERY_OR_SUPERMARKET
Currently not a documented return type.
|
GYM
Currently not a documented return type.
|
HEALTH
Currently not a documented return type.
|
HOME_GOODS_STORE
Currently not a documented return type.
|
INSURANCE_AGENCY
Currently not a documented return type.
|
INTERSECTION
A major intersection, usually of two major roads.
|
LAWYER
Currently not a documented return type.
|
LIGHT_RAIL_STATION
The location of a light rail station.
|
LOCALITY
An incorporated city or town political entity.
|
LODGING
Currently not a documented return type.
|
MEAL_TAKEAWAY
Currently not a documented return type.
|
MOVING_COMPANY
Currently not a documented return type.
|
NATURAL_FEATURE
A prominent natural feature.
|
NEIGHBORHOOD
A named neighborhood.
|
PARK
A named park.
|
PLACE_OF_WORSHIP
The location of a place of worship.
|
POINT_OF_INTEREST
A named point of interest.
|
POLITICAL
A political entity.
|
POST_OFFICE
The location of a post office.
|
POSTAL_CODE
A postal code as used to address postal mail within the country.
|
POSTAL_CODE_PREFIX
A postal code prefix as used to address postal mail within the country.
|
POSTAL_TOWN
A grouping of geographic areas, such as locality and sublocality, used for mailing addresses in
some countries.
|
PREMISE
A named location, usually a building or collection of buildings with a common name.
|
ROUTE
A named route (such as "US 101").
|
SHOPPING_MALL
Currently not a documented return type.
|
STORAGE
Currently not a documented return type.
|
STORE
Currently not a documented return type.
|
STREET_ADDRESS
A precise street address.
|
SUBLOCALITY
A first-order civil entity below a locality.
|
SUBLOCALITY_LEVEL_1 |
SUBLOCALITY_LEVEL_2 |
SUBLOCALITY_LEVEL_3 |
SUBLOCALITY_LEVEL_4 |
SUBLOCALITY_LEVEL_5 |
SUBPREMISE
A first-order entity below a named location, usually a singular building within a collection of
buildings with a common name.
|
SUBWAY_STATION
The location of a subway station.
|
SYNAGOGUE
Currently not a documented return type.
|
TRAIN_STATION
The location of a train station.
|
TRANSIT_STATION
The location of a transit station.
|
UNIVERSITY
A university.
|
UNKNOWN
Indicates an unknown address type returned by the server.
|
WARD
A specific type of Japanese locality, used to facilitate distinction between multiple locality
components within a Japanese address.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toCanonicalLiteral() |
java.lang.String |
toString() |
java.lang.String |
toUrlValue() |
static AddressType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddressType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressType STREET_ADDRESS
public static final AddressType ROUTE
public static final AddressType INTERSECTION
public static final AddressType POLITICAL
public static final AddressType COUNTRY
public static final AddressType ADMINISTRATIVE_AREA_LEVEL_1
public static final AddressType ADMINISTRATIVE_AREA_LEVEL_2
public static final AddressType ADMINISTRATIVE_AREA_LEVEL_3
public static final AddressType ADMINISTRATIVE_AREA_LEVEL_4
public static final AddressType ADMINISTRATIVE_AREA_LEVEL_5
public static final AddressType COLLOQUIAL_AREA
public static final AddressType LOCALITY
public static final AddressType WARD
public static final AddressType SUBLOCALITY
SUBLOCALITY_LEVEL_1
to SUBLOCALITY_LEVEL_5
. Each sublocality level is a
civil entity. Larger numbers indicate a smaller geographic area.public static final AddressType SUBLOCALITY_LEVEL_1
public static final AddressType SUBLOCALITY_LEVEL_2
public static final AddressType SUBLOCALITY_LEVEL_3
public static final AddressType SUBLOCALITY_LEVEL_4
public static final AddressType SUBLOCALITY_LEVEL_5
public static final AddressType NEIGHBORHOOD
public static final AddressType PREMISE
public static final AddressType SUBPREMISE
public static final AddressType POSTAL_CODE
public static final AddressType POSTAL_CODE_PREFIX
public static final AddressType NATURAL_FEATURE
public static final AddressType AIRPORT
public static final AddressType UNIVERSITY
public static final AddressType PARK
public static final AddressType POINT_OF_INTEREST
public static final AddressType ESTABLISHMENT
public static final AddressType BUS_STATION
public static final AddressType TRAIN_STATION
public static final AddressType SUBWAY_STATION
public static final AddressType TRANSIT_STATION
public static final AddressType LIGHT_RAIL_STATION
public static final AddressType CHURCH
public static final AddressType FINANCE
public static final AddressType POST_OFFICE
public static final AddressType PLACE_OF_WORSHIP
public static final AddressType POSTAL_TOWN
public static final AddressType SYNAGOGUE
public static final AddressType FOOD
public static final AddressType GROCERY_OR_SUPERMARKET
public static final AddressType STORE
public static final AddressType LAWYER
public static final AddressType HEALTH
public static final AddressType INSURANCE_AGENCY
public static final AddressType GAS_STATION
public static final AddressType CAR_DEALER
public static final AddressType CAR_REPAIR
public static final AddressType MEAL_TAKEAWAY
public static final AddressType FURNITURE_STORE
public static final AddressType HOME_GOODS_STORE
public static final AddressType SHOPPING_MALL
public static final AddressType GYM
public static final AddressType ACCOUNTING
public static final AddressType MOVING_COMPANY
public static final AddressType LODGING
public static final AddressType STORAGE
public static final AddressType UNKNOWN
public static AddressType[] values()
for (AddressType c : AddressType.values()) System.out.println(c);
public static AddressType 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<AddressType>
public java.lang.String toCanonicalLiteral()
public java.lang.String toUrlValue()
toUrlValue
in interface com.google.maps.internal.StringJoin.UrlValue