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 double
getLatitude()
Gets the latitude (represents the location north and south of the equator).double
getLongitude()
Gets the longitude (represents the location east and west of the prime meridian).void
setLatitude(double latitude)
Sets the latitude.void
setLongitude(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()
-
-