Package org.opengis.metadata.citation
Interface Address
-
@UML(identifier="CI_Address", specification=ISO_19115) public interface Address
Location of the responsible individual or organization.- Since:
- 1.0
- Version:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InternationalStringgetAdministrativeArea()State, province of the location.InternationalStringgetCity()The city of the location.InternationalStringgetCountry()Country of the physical address.java.util.Collection<java.lang.String>getDeliveryPoints()Address line for the location (as described in ISO 11180, Annex A).java.util.Collection<java.lang.String>getElectronicMailAddresses()Address of the electronic mailbox of the responsible organization or individual.java.lang.StringgetPostalCode()ZIP or other postal code.
-
-
-
Method Detail
-
getDeliveryPoints
@UML(identifier="deliveryPoint", obligation=OPTIONAL, specification=ISO_19115) java.util.Collection<java.lang.String> getDeliveryPoints()
Address line for the location (as described in ISO 11180, Annex A). Returns an empty collection if none.- Returns:
- Address line for the location.
-
getCity
@UML(identifier="city", obligation=OPTIONAL, specification=ISO_19115) InternationalString getCity()
The city of the location. Returnsnullif unspecified.- Returns:
- The city of the location, or
null.
-
getAdministrativeArea
@UML(identifier="administrativeArea", obligation=OPTIONAL, specification=ISO_19115) InternationalString getAdministrativeArea()
State, province of the location. Returnsnullif unspecified.- Returns:
- State, province of the location, or
null.
-
getPostalCode
@UML(identifier="postalCode", obligation=OPTIONAL, specification=ISO_19115) java.lang.String getPostalCode()
ZIP or other postal code. Returnsnullif unspecified.- Returns:
- ZIP or other postal code, or
null.
-
getCountry
@UML(identifier="country", obligation=OPTIONAL, specification=ISO_19115) InternationalString getCountry()
Country of the physical address. Returnsnullif unspecified.- Returns:
- Country of the physical address, or
null.
-
getElectronicMailAddresses
@UML(identifier="electronicMailAddress", obligation=OPTIONAL, specification=ISO_19115) java.util.Collection<java.lang.String> getElectronicMailAddresses()
Address of the electronic mailbox of the responsible organization or individual. Returns an empty collection if none.- Returns:
- Address of the electronic mailbox of the responsible organization or individual.
-
-