Interface Contact
-
- All Known Implementing Classes:
ContactImpl
public interface ContactInformation 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 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
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
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
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
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
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.
-
-