Class VCard.Geo
- java.lang.Object
-
- rocks.xmpp.extensions.vcard.temp.model.VCard.Geo
-
-
Constructor Summary
Constructors Constructor Description Geo(double latitude, double longitude)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetLatitude()Gets the latitude (represents the location north and south of the equator).doublegetLongitude()Gets the longitude (represents the location east and west of the prime meridian).voidsetLatitude(double latitude)Sets the latitude.voidsetLongitude(double longitude)Sets the longitude.
-
-
-
Method Detail
-
getLatitude
public double getLatitude()
Gets the latitude (represents the location north and south of the equator).- Returns:
- The latitude.
- See Also:
setLatitude(double)
-
setLatitude
public void setLatitude(double latitude)
Sets the latitude.- Parameters:
latitude- The latitude.- See Also:
getLatitude()
-
getLongitude
public double getLongitude()
Gets the longitude (represents the location east and west of the prime meridian).- Returns:
- The longitude.
- See Also:
setLongitude(double)
-
setLongitude
public void setLongitude(double longitude)
Sets the longitude.- Parameters:
longitude- The longitude.- See Also:
getLongitude()
-
-