org.deegree.ogcbasic
Interface ContactAddress

All Known Implementing Classes:
ContactAddress_Impl

public interface ContactAddress

specifies the data structur of a address and the access to its components based on ISO 19115

----------------------------------------------------------------------

Version:
2002-03-01
Author:
Andreas Poth

Method Summary
 java.lang.String getAddress()
          returns the address. usally this is the street and number of a building.
 java.lang.String getAddressType()
          returns the address type. e.g.
 java.lang.String getCity()
          returns the name of the city
 java.lang.String getCountry()
          returns the name of the country. this should be the complete name and not an abbreviation.
 java.lang.String getPostCode()
          returns the post code.
 java.lang.String getStateOrProvince()
          returns the name of the state or province of the address.
 

Method Detail

getAddressType

public java.lang.String getAddressType()
returns the address type. e.g. 'postal'


getAddress

public java.lang.String getAddress()
returns the address. usally this is the street and number of a building. It also can be a p.o. box


getCity

public java.lang.String getCity()
returns the name of the city


getStateOrProvince

public java.lang.String getStateOrProvince()
returns the name of the state or province of the address. If no state or province is known or nessecary null will be returned.


getPostCode

public java.lang.String getPostCode()
returns the post code. This doesn't contain an abbreviation for the country


getCountry

public java.lang.String getCountry()
returns the name of the country. this should be the complete name and not an abbreviation.