Interface Location
-
- All Known Implementing Classes:
LocationImpl
public interface LocationSite Location Information
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAddress()Get the street address of the sitejava.lang.StringgetAddress2()Get the second address line of the site if availablejava.lang.StringgetCity()Get the city the site is located injava.lang.StringgetCountry()Get the country the site is located injava.lang.StringgetCountryCode()Get short country code of the sitejava.lang.StringgetState()Get the state the site is located injava.lang.StringgetStateCode()Get the state code of the sitejava.lang.StringgetTimeZone()Get the time zone of the sitejava.lang.StringgetZip()Get the zip of the site
-
-
-
Method Detail
-
getCountry
java.lang.String getCountry()
Get the country the site is located in- Returns:
- {String} Country
-
getState
java.lang.String getState()
Get the state the site is located in- Returns:
- {String} State
-
getCity
java.lang.String getCity()
Get the city the site is located in- Returns:
- {String} City
-
getAddress
java.lang.String getAddress()
Get the street address of the site- Returns:
- {String} Address
-
getAddress2
java.lang.String getAddress2()
Get the second address line of the site if available- Returns:
- {String} Address 2
-
getZip
java.lang.String getZip()
Get the zip of the site- Returns:
- {String} Zip Code
-
getTimeZone
java.lang.String getTimeZone()
Get the time zone of the site- Returns:
- {String} time zone
-
getCountryCode
java.lang.String getCountryCode()
Get short country code of the site- Returns:
- {String} Country Code
-
getStateCode
java.lang.String getStateCode()
Get the state code of the site- Returns:
- {String} State Code
-
-