
de.ixilon.osm.schema.OsmWay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of overpass-api Show documentation
Show all versions of overpass-api Show documentation
Overpass API Java client library
The newest version!
//
// Diese Datei wurde mit der Eclipse Implementation of JAXB, v3.0.0 generiert
// Siehe https://eclipse-ee4j.github.io/jaxb-ri
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2021.11.11 um 08:20:20 PM CET
//
package de.ixilon.osm.schema;
import java.util.ArrayList;
import java.util.List;
import javax.xml.datatype.XMLGregorianCalendar;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElements;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java-Klasse für osm_way complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="osm_way">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice maxOccurs="unbounded" minOccurs="0">
* <element name="tag" type="{}osm_tag"/>
* <element name="nd" type="{}osm_nd"/>
* </choice>
* </sequence>
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="visible" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="user" type="{}osm_user" />
* <attribute name="timestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "osm_way", propOrder = {
"tagOrNd"
})
public class OsmWay {
@XmlElements({
@XmlElement(name = "tag", type = OsmTag.class),
@XmlElement(name = "nd", type = OsmNd.class)
})
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy