Package org.opengis.metadata.citation
Interface Contact
-
@UML(identifier="CI_Contact", specification=ISO_19115) public interface Contact
Information required to enable contact with the responsible person and/or organization.- Since:
- 1.0
- Version:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddressgetAddress()Physical and email address at which the organization or individual may be contacted.InternationalStringgetContactInstructions()Supplemental instructions on how or when to contact the individual or organization.InternationalStringgetHoursOfService()Time period (including time zone) when individuals can contact the organization or individual.OnlineResourcegetOnlineResource()On-line information that can be used to contact the individual or organization.TelephonegetPhone()Telephone numbers at which the organization or individual may be contacted.
-
-
-
Method Detail
-
getPhone
@UML(identifier="phone", obligation=OPTIONAL, specification=ISO_19115) Telephone getPhone()
Telephone numbers at which the organization or individual may be contacted. Returnsnullif none.- Returns:
- Telephone numbers at which the organization or individual may be contacted,
or
null.
-
getAddress
@UML(identifier="address", obligation=OPTIONAL, specification=ISO_19115) Address getAddress()
Physical and email address at which the organization or individual may be contacted. Returnsnullif none.- Returns:
- Physical and email address at which the organization or individual may be contacted,
or
null.
-
getOnlineResource
@UML(identifier="onlineResource", obligation=OPTIONAL, specification=ISO_19115) OnlineResource getOnlineResource()
On-line information that can be used to contact the individual or organization. Returnsnullif none.- Returns:
- On-line information that can be used to contact the individual or organization,
or
null.
-
getHoursOfService
@UML(identifier="hoursOfService", obligation=OPTIONAL, specification=ISO_19115) InternationalString getHoursOfService()
Time period (including time zone) when individuals can contact the organization or individual. Returnsnullif unspecified.- Returns:
- Time period when individuals can contact the organization or individual,
or
null.
-
getContactInstructions
@UML(identifier="contactInstructions", obligation=OPTIONAL, specification=ISO_19115) InternationalString getContactInstructions()
Supplemental instructions on how or when to contact the individual or organization. Returnsnullif none.- Returns:
- Supplemental instructions on how or when to contact the individual or organization,
or
null.
-
-