// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert // Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2016.08.10 um 09:13:50 PM CEST // package net.opengis.citygml.cityfurniture._2; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; import net.opengis.citygml._2.AbstractCityObjectType; import net.opengis.citygml._2.ImplicitRepresentationPropertyType; import net.opengis.gml.CodeType; import net.opengis.gml.GeometryPropertyType; import net.opengis.gml.MultiCurvePropertyType; /** * Type describing city furnitures, like traffic lights, benches, ... As subclass of _CityObject, a * CityFurniture inherits all attributes and relations, in particular an id, names, external references, and generalization * relations. * * <p>Java-Klasse für CityFurnitureType complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="CityFurnitureType"> * <complexContent> * <extension base="{http://www.opengis.net/citygml/2.0}AbstractCityObjectType"> * <sequence> * <element name="class" type="{http://www.opengis.net/gml}CodeType" minOccurs="0"/> * <element name="function" type="{http://www.opengis.net/gml}CodeType" maxOccurs="unbounded" minOccurs="0"/> * <element name="usage" type="{http://www.opengis.net/gml}CodeType" maxOccurs="unbounded" minOccurs="0"/> * <element name="lod1Geometry" type="{http://www.opengis.net/gml}GeometryPropertyType" minOccurs="0"/> * <element name="lod2Geometry" type="{http://www.opengis.net/gml}GeometryPropertyType" minOccurs="0"/> * <element name="lod3Geometry" type="{http://www.opengis.net/gml}GeometryPropertyType" minOccurs="0"/> * <element name="lod4Geometry" type="{http://www.opengis.net/gml}GeometryPropertyType" minOccurs="0"/> * <element name="lod1TerrainIntersection" type="{http://www.opengis.net/gml}MultiCurvePropertyType" minOccurs="0"/> * <element name="lod2TerrainIntersection" type="{http://www.opengis.net/gml}MultiCurvePropertyType" minOccurs="0"/> * <element name="lod3TerrainIntersection" type="{http://www.opengis.net/gml}MultiCurvePropertyType" minOccurs="0"/> * <element name="lod4TerrainIntersection" type="{http://www.opengis.net/gml}MultiCurvePropertyType" minOccurs="0"/> * <element name="lod1ImplicitRepresentation" type="{http://www.opengis.net/citygml/2.0}ImplicitRepresentationPropertyType" minOccurs="0"/> * <element name="lod2ImplicitRepresentation" type="{http://www.opengis.net/citygml/2.0}ImplicitRepresentationPropertyType" minOccurs="0"/> * <element name="lod3ImplicitRepresentation" type="{http://www.opengis.net/citygml/2.0}ImplicitRepresentationPropertyType" minOccurs="0"/> * <element name="lod4ImplicitRepresentation" type="{http://www.opengis.net/citygml/2.0}ImplicitRepresentationPropertyType" minOccurs="0"/> * <element ref="{http://www.opengis.net/citygml/cityfurniture/2.0}_GenericApplicationPropertyOfCityFurniture" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CityFurnitureType", propOrder = { "clazz", "function", "usage", "lod1Geometry", "lod2Geometry", "lod3Geometry", "lod4Geometry", "lod1TerrainIntersection", "lod2TerrainIntersection", "lod3TerrainIntersection", "lod4TerrainIntersection", "lod1ImplicitRepresentation", "lod2ImplicitRepresentation", "lod3ImplicitRepresentation", "lod4ImplicitRepresentation", "_GenericApplicationPropertyOfCityFurniture" }) public class CityFurnitureType extends AbstractCityObjectType { @XmlElement(name = "class") protected CodeType clazz; protected List<CodeType> function; protected List<CodeType> usage; protected GeometryPropertyType lod1Geometry; protected GeometryPropertyType lod2Geometry; protected GeometryPropertyType lod3Geometry; protected GeometryPropertyType lod4Geometry; protected MultiCurvePropertyType lod1TerrainIntersection; protected MultiCurvePropertyType lod2TerrainIntersection; protected MultiCurvePropertyType lod3TerrainIntersection; protected MultiCurvePropertyType lod4TerrainIntersection; protected ImplicitRepresentationPropertyType lod1ImplicitRepresentation; protected ImplicitRepresentationPropertyType lod2ImplicitRepresentation; protected ImplicitRepresentationPropertyType lod3ImplicitRepresentation; protected ImplicitRepresentationPropertyType lod4ImplicitRepresentation; @XmlElementRef(name = "_GenericApplicationPropertyOfCityFurniture", namespace = "http://www.opengis.net/citygml/cityfurniture/2.0", type = JAXBElement.class, required = false) protected List<JAXBElement<Object>> _GenericApplicationPropertyOfCityFurniture; /** * Ruft den Wert der clazz-Eigenschaft ab. * * @return * possible object is * {@link CodeType } * */ public CodeType getClazz() { return clazz; } /** * Legt den Wert der clazz-Eigenschaft fest. * * @param value * allowed object is * {@link CodeType } * */ public void setClazz(CodeType value) { this.clazz = value; } public boolean isSetClazz() { return (this.clazz!= null); } /** * Gets the value of the function property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the function property. * * <p> * For example, to add a new item, do as follows: * <pre> * getFunction().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CodeType } * * */ public List<CodeType> getFunction() { if (function == null) { function = new ArrayList<CodeType>(); } return this.function; } public boolean isSetFunction() { return ((this.function!= null)&&(!this.function.isEmpty())); } public void unsetFunction() { this.function = null; } /** * Gets the value of the usage property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the usage property. * * <p> * For example, to add a new item, do as follows: * <pre> * getUsage().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link CodeType } * * */ public List<CodeType> getUsage() { if (usage == null) { usage = new ArrayList<CodeType>(); } return this.usage; } public boolean isSetUsage() { return ((this.usage!= null)&&(!this.usage.isEmpty())); } public void unsetUsage() { this.usage = null; } /** * Ruft den Wert der lod1Geometry-Eigenschaft ab. * * @return * possible object is * {@link GeometryPropertyType } * */ public GeometryPropertyType getLod1Geometry() { return lod1Geometry; } /** * Legt den Wert der lod1Geometry-Eigenschaft fest. * * @param value * allowed object is * {@link GeometryPropertyType } * */ public void setLod1Geometry(GeometryPropertyType value) { this.lod1Geometry = value; } public boolean isSetLod1Geometry() { return (this.lod1Geometry!= null); } /** * Ruft den Wert der lod2Geometry-Eigenschaft ab. * * @return * possible object is * {@link GeometryPropertyType } * */ public GeometryPropertyType getLod2Geometry() { return lod2Geometry; } /** * Legt den Wert der lod2Geometry-Eigenschaft fest. * * @param value * allowed object is * {@link GeometryPropertyType } * */ public void setLod2Geometry(GeometryPropertyType value) { this.lod2Geometry = value; } public boolean isSetLod2Geometry() { return (this.lod2Geometry!= null); } /** * Ruft den Wert der lod3Geometry-Eigenschaft ab. * * @return * possible object is * {@link GeometryPropertyType } * */ public GeometryPropertyType getLod3Geometry() { return lod3Geometry; } /** * Legt den Wert der lod3Geometry-Eigenschaft fest. * * @param value * allowed object is * {@link GeometryPropertyType } * */ public void setLod3Geometry(GeometryPropertyType value) { this.lod3Geometry = value; } public boolean isSetLod3Geometry() { return (this.lod3Geometry!= null); } /** * Ruft den Wert der lod4Geometry-Eigenschaft ab. * * @return * possible object is * {@link GeometryPropertyType } * */ public GeometryPropertyType getLod4Geometry() { return lod4Geometry; } /** * Legt den Wert der lod4Geometry-Eigenschaft fest. * * @param value * allowed object is * {@link GeometryPropertyType } * */ public void setLod4Geometry(GeometryPropertyType value) { this.lod4Geometry = value; } public boolean isSetLod4Geometry() { return (this.lod4Geometry!= null); } /** * Ruft den Wert der lod1TerrainIntersection-Eigenschaft ab. * * @return * possible object is * {@link MultiCurvePropertyType } * */ public MultiCurvePropertyType getLod1TerrainIntersection() { return lod1TerrainIntersection; } /** * Legt den Wert der lod1TerrainIntersection-Eigenschaft fest. * * @param value * allowed object is * {@link MultiCurvePropertyType } * */ public void setLod1TerrainIntersection(MultiCurvePropertyType value) { this.lod1TerrainIntersection = value; } public boolean isSetLod1TerrainIntersection() { return (this.lod1TerrainIntersection!= null); } /** * Ruft den Wert der lod2TerrainIntersection-Eigenschaft ab. * * @return * possible object is * {@link MultiCurvePropertyType } * */ public MultiCurvePropertyType getLod2TerrainIntersection() { return lod2TerrainIntersection; } /** * Legt den Wert der lod2TerrainIntersection-Eigenschaft fest. * * @param value * allowed object is * {@link MultiCurvePropertyType } * */ public void setLod2TerrainIntersection(MultiCurvePropertyType value) { this.lod2TerrainIntersection = value; } public boolean isSetLod2TerrainIntersection() { return (this.lod2TerrainIntersection!= null); } /** * Ruft den Wert der lod3TerrainIntersection-Eigenschaft ab. * * @return * possible object is * {@link MultiCurvePropertyType } * */ public MultiCurvePropertyType getLod3TerrainIntersection() { return lod3TerrainIntersection; } /** * Legt den Wert der lod3TerrainIntersection-Eigenschaft fest. * * @param value * allowed object is * {@link MultiCurvePropertyType } * */ public void setLod3TerrainIntersection(MultiCurvePropertyType value) { this.lod3TerrainIntersection = value; } public boolean isSetLod3TerrainIntersection() { return (this.lod3TerrainIntersection!= null); } /** * Ruft den Wert der lod4TerrainIntersection-Eigenschaft ab. * * @return * possible object is * {@link MultiCurvePropertyType } * */ public MultiCurvePropertyType getLod4TerrainIntersection() { return lod4TerrainIntersection; } /** * Legt den Wert der lod4TerrainIntersection-Eigenschaft fest. * * @param value * allowed object is * {@link MultiCurvePropertyType } * */ public void setLod4TerrainIntersection(MultiCurvePropertyType value) { this.lod4TerrainIntersection = value; } public boolean isSetLod4TerrainIntersection() { return (this.lod4TerrainIntersection!= null); } /** * Ruft den Wert der lod1ImplicitRepresentation-Eigenschaft ab. * * @return * possible object is * {@link ImplicitRepresentationPropertyType } * */ public ImplicitRepresentationPropertyType getLod1ImplicitRepresentation() { return lod1ImplicitRepresentation; } /** * Legt den Wert der lod1ImplicitRepresentation-Eigenschaft fest. * * @param value * allowed object is * {@link ImplicitRepresentationPropertyType } * */ public void setLod1ImplicitRepresentation(ImplicitRepresentationPropertyType value) { this.lod1ImplicitRepresentation = value; } public boolean isSetLod1ImplicitRepresentation() { return (this.lod1ImplicitRepresentation!= null); } /** * Ruft den Wert der lod2ImplicitRepresentation-Eigenschaft ab. * * @return * possible object is * {@link ImplicitRepresentationPropertyType } * */ public ImplicitRepresentationPropertyType getLod2ImplicitRepresentation() { return lod2ImplicitRepresentation; } /** * Legt den Wert der lod2ImplicitRepresentation-Eigenschaft fest. * * @param value * allowed object is * {@link ImplicitRepresentationPropertyType } * */ public void setLod2ImplicitRepresentation(ImplicitRepresentationPropertyType value) { this.lod2ImplicitRepresentation = value; } public boolean isSetLod2ImplicitRepresentation() { return (this.lod2ImplicitRepresentation!= null); } /** * Ruft den Wert der lod3ImplicitRepresentation-Eigenschaft ab. * * @return * possible object is * {@link ImplicitRepresentationPropertyType } * */ public ImplicitRepresentationPropertyType getLod3ImplicitRepresentation() { return lod3ImplicitRepresentation; } /** * Legt den Wert der lod3ImplicitRepresentation-Eigenschaft fest. * * @param value * allowed object is * {@link ImplicitRepresentationPropertyType } * */ public void setLod3ImplicitRepresentation(ImplicitRepresentationPropertyType value) { this.lod3ImplicitRepresentation = value; } public boolean isSetLod3ImplicitRepresentation() { return (this.lod3ImplicitRepresentation!= null); } /** * Ruft den Wert der lod4ImplicitRepresentation-Eigenschaft ab. * * @return * possible object is * {@link ImplicitRepresentationPropertyType } * */ public ImplicitRepresentationPropertyType getLod4ImplicitRepresentation() { return lod4ImplicitRepresentation; } /** * Legt den Wert der lod4ImplicitRepresentation-Eigenschaft fest. * * @param value * allowed object is * {@link ImplicitRepresentationPropertyType } * */ public void setLod4ImplicitRepresentation(ImplicitRepresentationPropertyType value) { this.lod4ImplicitRepresentation = value; } public boolean isSetLod4ImplicitRepresentation() { return (this.lod4ImplicitRepresentation!= null); } /** * Gets the value of the genericApplicationPropertyOfCityFurniture property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the genericApplicationPropertyOfCityFurniture property. * * <p> * For example, to add a new item, do as follows: * <pre> * get_GenericApplicationPropertyOfCityFurniture().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link Object }{@code >} * {@link JAXBElement }{@code <}{@link Object }{@code >} * * */ public List<JAXBElement<Object>> get_GenericApplicationPropertyOfCityFurniture() { if (_GenericApplicationPropertyOfCityFurniture == null) { _GenericApplicationPropertyOfCityFurniture = new ArrayList<JAXBElement<Object>>(); } return this._GenericApplicationPropertyOfCityFurniture; } public boolean isSet_GenericApplicationPropertyOfCityFurniture() { return ((this._GenericApplicationPropertyOfCityFurniture!= null)&&(!this._GenericApplicationPropertyOfCityFurniture.isEmpty())); } public void unset_GenericApplicationPropertyOfCityFurniture() { this._GenericApplicationPropertyOfCityFurniture = null; } public void setFunction(List<CodeType> value) { this.function = value; } public void setUsage(List<CodeType> value) { this.usage = value; } public void set_GenericApplicationPropertyOfCityFurniture(List<JAXBElement<Object>> value) { this._GenericApplicationPropertyOfCityFurniture = value; } }