Class GeographicCoordinates


  • public class GeographicCoordinates
    extends Object
    Definition: Location on the Earth specified by two numbers representing vertical and horizontal position. -- Usage: Identifies the geographic location of a mobile phone.

    Java class for GeographicCoordinates complex type.

    The following schema fragment specifies the expected content contained within this class.

     <complexType name="GeographicCoordinates">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element name="Latitude" type="{}Latitude"/>
             <element name="Longitude" type="{}Longitude"/>
           </sequence>
         </restriction>
       </complexContent>
     </complexType>
     
    • Field Detail

      • latitude

        protected String latitude
        The Latitude.
      • longitude

        protected String longitude
        The Longitude.
    • Constructor Detail

      • GeographicCoordinates

        public GeographicCoordinates()
    • Method Detail

      • getLatitude

        public String getLatitude()
        Gets the value of the latitude property.
        Returns:
        possible object is String
      • setLatitude

        public void setLatitude​(String value)
        Sets the value of the latitude property.
        Parameters:
        value - allowed object is String
      • getLongitude

        public String getLongitude()
        Gets the value of the longitude property.
        Returns:
        possible object is String
      • setLongitude

        public void setLongitude​(String value)
        Sets the value of the longitude property.
        Parameters:
        value - allowed object is String