Interface Contact
-
- All Known Implementing Classes:
ContactImpl
public interface Contact
Information required to enable contact with the responsible person and/or organization.- Since:
- GeoAPI 1.0
- Author:
- Martin Desruisseaux (IRD)
-
-
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
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
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
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
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
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
.
-
-