Provides a strongly-typed representation of a Location as defined by the Graph API.
Note that this interface is intended to be used with GraphObject.Factory and not implemented directly.
Penerapan: | GraphObject |
Paket: | model |
getStreet()
Returns the street component of the location.
public String getStreet()
setStreet(String)
Sets the street component of the location.
public void setStreet(String street)
Parameter | Keterangan |
---|---|
street | The street component of the location, or null |
getCity()
Gets the city component of the location.
public String getCity()
setCity(String)
Sets the city component of the location.
public void setCity(String city)
Parameter | Keterangan |
---|---|
city | The city component of the location |
getState()
Returns the state component of the location.
public String getState()
setState(String)
Sets the state component of the location.
public void setState(String state)
Parameter | Keterangan |
---|---|
state | The state component of the location |
getCountry()
Returns the country component of the location.
public String getCountry()
setCountry(String)
Sets the country component of the location
public void setCountry(String country)
Parameter | Keterangan |
---|---|
country | The country component of the location |
getZip()
Returns the postal code component of the location.
public String getZip()
setZip(String)
Sets the postal code component of the location.
public void setZip(String zip)
Parameter | Keterangan |
---|---|
zip | The postal code component of the location |
getLatitude()
Returns the latitude component of the location.
public double getLatitude()
setLatitude(double)
Sets the latitude component of the location.
public void setLatitude(double latitude)
Parameter | Keterangan |
---|---|
latitude | The latitude component of the location |
getLongitude()
Returns the longitude component of the location.
public double getLongitude()
setLongitude(double)
Sets the longitude component of the location.
public void setLongitude(double longitude)
Parameter | Keterangan |
---|---|
longitude | The longitude component of the location |