All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.nexo.UTMCoordinates Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
package com.adyen.model.nexo;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * Definition: Location on the Earth specified by the Universal Transverse Mercator coordinate system. -- Usage: Identifies the geographic location of a mobile phone by GPS using the WGS84 ellipsoid spatial reference system.
 *
 * 

Java class for UTMCoordinates complex type. * *

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

 * <complexType name="UTMCoordinates">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="UTMZone" type="{}UTMZone"/>
 *         <element name="UTMEastward" type="{}UTMEastward"/>
 *         <element name="UTMNorthward" type="{}UTMNorthward"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UTMCoordinates", propOrder = { "utmZone", "utmEastward", "utmNorthward" }) public class UTMCoordinates { /** * The Utm zone. */ @XmlElement(name = "UTMZone", required = true) protected String utmZone; /** * The Utm eastward. */ @XmlElement(name = "UTMEastward", required = true) protected String utmEastward; /** * The Utm northward. */ @XmlElement(name = "UTMNorthward", required = true) protected String utmNorthward; /** * Gets the value of the utmZone property. * * @return possible object is {@link String } */ public String getUTMZone() { return utmZone; } /** * Sets the value of the utmZone property. * * @param value allowed object is {@link String } */ public void setUTMZone(String value) { this.utmZone = value; } /** * Gets the value of the utmEastward property. * * @return possible object is {@link String } */ public String getUTMEastward() { return utmEastward; } /** * Sets the value of the utmEastward property. * * @param value allowed object is {@link String } */ public void setUTMEastward(String value) { this.utmEastward = value; } /** * Gets the value of the utmNorthward property. * * @return possible object is {@link String } */ public String getUTMNorthward() { return utmNorthward; } /** * Sets the value of the utmNorthward property. * * @param value allowed object is {@link String } */ public void setUTMNorthward(String value) { this.utmNorthward = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy