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 Address
getAddress()
Physical and email address at which the organization or individual may be contacted.InternationalString
getContactInstructions()
Supplemental instructions on how or when to contact the individual or organization.InternationalString
getHoursOfService()
Time period (including time zone) when individuals can contact the organization or individual.OnlineResource
getOnlineResource()
On-line information that can be used to contact the individual or organization.Telephone
getPhone()
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. Returnsnull
if 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. Returnsnull
if 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. Returnsnull
if 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. Returnsnull
if 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. Returnsnull
if none.- Returns:
- Supplemental instructions on how or when to contact the individual or organization,
or
null
.
-
-