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

org.openstreetmap.osm.Bounds Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
/*
 * Licensed under the EUPL, Version 1.2 or – as soon they will be approved by
 * the European Commission - subsequent versions of the EUPL (the "Licence");
 * You may not use this work except in compliance with the Licence.
 * You may obtain a copy of the Licence at:
 *
 *   https://joinup.ec.europa.eu/software/page/eupl
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the Licence is distributed on an "AS IS" basis,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the Licence for the specific language governing permissions and
 * limitations under the Licence.
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.03.21 at 02:35:20 PM CET 
//


package org.openstreetmap.osm;

import javax.xml.bind.annotation.*;


/**
 * 

Java class for anonymous complex type. *

*

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

*

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="minlat" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="minlon" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="maxlat" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="maxlon" type="{http://www.w3.org/2001/XMLSchema}double" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "bounds") public class Bounds { @XmlAttribute(name = "minlat") protected Double minlat; @XmlAttribute(name = "minlon") protected Double minlon; @XmlAttribute(name = "maxlat") protected Double maxlat; @XmlAttribute(name = "maxlon") protected Double maxlon; /** * Gets the value of the minlat property. * * @return possible object is * {@link Double } */ public Double getMinlat() { return minlat; } /** * Sets the value of the minlat property. * * @param value allowed object is * {@link Double } */ public void setMinlat(Double value) { this.minlat = value; } /** * Gets the value of the minlon property. * * @return possible object is * {@link Double } */ public Double getMinlon() { return minlon; } /** * Sets the value of the minlon property. * * @param value allowed object is * {@link Double } */ public void setMinlon(Double value) { this.minlon = value; } /** * Gets the value of the maxlat property. * * @return possible object is * {@link Double } */ public Double getMaxlat() { return maxlat; } /** * Sets the value of the maxlat property. * * @param value allowed object is * {@link Double } */ public void setMaxlat(Double value) { this.maxlat = value; } /** * Gets the value of the maxlon property. * * @return possible object is * {@link Double } */ public Double getMaxlon() { return maxlon; } /** * Sets the value of the maxlon property. * * @param value allowed object is * {@link Double } */ public void setMaxlon(Double value) { this.maxlon = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy