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

net.opengis.citygml.transportation.v_2_0.AuxiliaryTrafficAreaType Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.26 at 04:41:00 PM AST 
//


package net.opengis.citygml.transportation.v_2_0;

import java.util.ArrayList;
import java.util.Collection;
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.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import net.opengis.citygml.v_2_0.ExternalReferenceType;
import net.opengis.citygml.v_2_0.GeneralizationRelationType;
import net.opengis.citygml.v_2_0.RelativeToTerrainType;
import net.opengis.citygml.v_2_0.RelativeToWaterType;
import net.opengis.gml.v_3_1_1.CodeType;
import net.opengis.gml.v_3_1_1.MultiSurfacePropertyType;
import org.jvnet.jaxb2_commons.lang.CopyStrategy2;
import org.jvnet.jaxb2_commons.lang.CopyTo2;
import org.jvnet.jaxb2_commons.lang.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.HashCode2;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy2;
import org.jvnet.jaxb2_commons.lang.JAXBCopyStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBMergeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.MergeFrom2;
import org.jvnet.jaxb2_commons.lang.MergeStrategy2;
import org.jvnet.jaxb2_commons.lang.ToString2;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy2;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;


/**
 * Type describing the class for auxiliary traffic Areas. These are the surfaces where no traffic actually
 * 				takes place, but which belong to a transportation object. Examples are kerbstones, road markings and grass stripes. As
 * 				subclass of _CityObject, an AuxiliaryTrafficArea inherits all attributes and relations, in particular an id, names,
 * 				external references, and generalization relations. 
 * 
 * 

Java class for AuxiliaryTrafficAreaType complex type. * *

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

 * <complexType name="AuxiliaryTrafficAreaType">
 *   <complexContent>
 *     <extension base="{http://www.opengis.net/citygml/transportation/2.0}AbstractTransportationObjectType">
 *       <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="surfaceMaterial" type="{http://www.opengis.net/gml}CodeType" minOccurs="0"/>
 *         <element name="lod2MultiSurface" type="{http://www.opengis.net/gml}MultiSurfacePropertyType" minOccurs="0"/>
 *         <element name="lod3MultiSurface" type="{http://www.opengis.net/gml}MultiSurfacePropertyType" minOccurs="0"/>
 *         <element name="lod4MultiSurface" type="{http://www.opengis.net/gml}MultiSurfacePropertyType" minOccurs="0"/>
 *         <element ref="{http://www.opengis.net/citygml/transportation/2.0}_GenericApplicationPropertyOfAuxiliaryTrafficArea" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AuxiliaryTrafficAreaType", propOrder = { "clazz", "function", "usage", "surfaceMaterial", "lod2MultiSurface", "lod3MultiSurface", "lod4MultiSurface", "genericApplicationPropertyOfAuxiliaryTrafficArea" }) public class AuxiliaryTrafficAreaType extends AbstractTransportationObjectType implements Cloneable, CopyTo2, Equals2, HashCode2, MergeFrom2, ToString2 { @XmlElement(name = "class") protected CodeType clazz; protected List function; protected List usage; protected CodeType surfaceMaterial; protected MultiSurfacePropertyType lod2MultiSurface; protected MultiSurfacePropertyType lod3MultiSurface; protected MultiSurfacePropertyType lod4MultiSurface; @XmlElement(name = "_GenericApplicationPropertyOfAuxiliaryTrafficArea") protected List genericApplicationPropertyOfAuxiliaryTrafficArea; /** * Gets the value of the clazz property. * * @return * possible object is * {@link CodeType } * */ public CodeType getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @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. * *

* 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 set method for the function property. * *

* For example, to add a new item, do as follows: *

     *    getFunction().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CodeType } * * */ public List getFunction() { if (function == null) { function = new ArrayList(); } 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. * *

* 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 set method for the usage property. * *

* For example, to add a new item, do as follows: *

     *    getUsage().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CodeType } * * */ public List getUsage() { if (usage == null) { usage = new ArrayList(); } return this.usage; } public boolean isSetUsage() { return ((this.usage!= null)&&(!this.usage.isEmpty())); } public void unsetUsage() { this.usage = null; } /** * Gets the value of the surfaceMaterial property. * * @return * possible object is * {@link CodeType } * */ public CodeType getSurfaceMaterial() { return surfaceMaterial; } /** * Sets the value of the surfaceMaterial property. * * @param value * allowed object is * {@link CodeType } * */ public void setSurfaceMaterial(CodeType value) { this.surfaceMaterial = value; } public boolean isSetSurfaceMaterial() { return (this.surfaceMaterial!= null); } /** * Gets the value of the lod2MultiSurface property. * * @return * possible object is * {@link MultiSurfacePropertyType } * */ public MultiSurfacePropertyType getLod2MultiSurface() { return lod2MultiSurface; } /** * Sets the value of the lod2MultiSurface property. * * @param value * allowed object is * {@link MultiSurfacePropertyType } * */ public void setLod2MultiSurface(MultiSurfacePropertyType value) { this.lod2MultiSurface = value; } public boolean isSetLod2MultiSurface() { return (this.lod2MultiSurface!= null); } /** * Gets the value of the lod3MultiSurface property. * * @return * possible object is * {@link MultiSurfacePropertyType } * */ public MultiSurfacePropertyType getLod3MultiSurface() { return lod3MultiSurface; } /** * Sets the value of the lod3MultiSurface property. * * @param value * allowed object is * {@link MultiSurfacePropertyType } * */ public void setLod3MultiSurface(MultiSurfacePropertyType value) { this.lod3MultiSurface = value; } public boolean isSetLod3MultiSurface() { return (this.lod3MultiSurface!= null); } /** * Gets the value of the lod4MultiSurface property. * * @return * possible object is * {@link MultiSurfacePropertyType } * */ public MultiSurfacePropertyType getLod4MultiSurface() { return lod4MultiSurface; } /** * Sets the value of the lod4MultiSurface property. * * @param value * allowed object is * {@link MultiSurfacePropertyType } * */ public void setLod4MultiSurface(MultiSurfacePropertyType value) { this.lod4MultiSurface = value; } public boolean isSetLod4MultiSurface() { return (this.lod4MultiSurface!= null); } /** * Gets the value of the genericApplicationPropertyOfAuxiliaryTrafficArea property. * *

* 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 set method for the genericApplicationPropertyOfAuxiliaryTrafficArea property. * *

* For example, to add a new item, do as follows: *

     *    getGenericApplicationPropertyOfAuxiliaryTrafficArea().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getGenericApplicationPropertyOfAuxiliaryTrafficArea() { if (genericApplicationPropertyOfAuxiliaryTrafficArea == null) { genericApplicationPropertyOfAuxiliaryTrafficArea = new ArrayList(); } return this.genericApplicationPropertyOfAuxiliaryTrafficArea; } public boolean isSetGenericApplicationPropertyOfAuxiliaryTrafficArea() { return ((this.genericApplicationPropertyOfAuxiliaryTrafficArea!= null)&&(!this.genericApplicationPropertyOfAuxiliaryTrafficArea.isEmpty())); } public void unsetGenericApplicationPropertyOfAuxiliaryTrafficArea() { this.genericApplicationPropertyOfAuxiliaryTrafficArea = null; } public String toString() { final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { super.appendFields(locator, buffer, strategy); { CodeType theClazz; theClazz = this.getClazz(); strategy.appendField(locator, this, "clazz", buffer, theClazz, this.isSetClazz()); } { List theFunction; theFunction = (this.isSetFunction()?this.getFunction():null); strategy.appendField(locator, this, "function", buffer, theFunction, this.isSetFunction()); } { List theUsage; theUsage = (this.isSetUsage()?this.getUsage():null); strategy.appendField(locator, this, "usage", buffer, theUsage, this.isSetUsage()); } { CodeType theSurfaceMaterial; theSurfaceMaterial = this.getSurfaceMaterial(); strategy.appendField(locator, this, "surfaceMaterial", buffer, theSurfaceMaterial, this.isSetSurfaceMaterial()); } { MultiSurfacePropertyType theLod2MultiSurface; theLod2MultiSurface = this.getLod2MultiSurface(); strategy.appendField(locator, this, "lod2MultiSurface", buffer, theLod2MultiSurface, this.isSetLod2MultiSurface()); } { MultiSurfacePropertyType theLod3MultiSurface; theLod3MultiSurface = this.getLod3MultiSurface(); strategy.appendField(locator, this, "lod3MultiSurface", buffer, theLod3MultiSurface, this.isSetLod3MultiSurface()); } { MultiSurfacePropertyType theLod4MultiSurface; theLod4MultiSurface = this.getLod4MultiSurface(); strategy.appendField(locator, this, "lod4MultiSurface", buffer, theLod4MultiSurface, this.isSetLod4MultiSurface()); } { List theGenericApplicationPropertyOfAuxiliaryTrafficArea; theGenericApplicationPropertyOfAuxiliaryTrafficArea = (this.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()?this.getGenericApplicationPropertyOfAuxiliaryTrafficArea():null); strategy.appendField(locator, this, "genericApplicationPropertyOfAuxiliaryTrafficArea", buffer, theGenericApplicationPropertyOfAuxiliaryTrafficArea, this.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()); } return buffer; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; } if (this == object) { return true; } if (!super.equals(thisLocator, thatLocator, object, strategy)) { return false; } final AuxiliaryTrafficAreaType that = ((AuxiliaryTrafficAreaType) object); { CodeType lhsClazz; lhsClazz = this.getClazz(); CodeType rhsClazz; rhsClazz = that.getClazz(); if (!strategy.equals(LocatorUtils.property(thisLocator, "clazz", lhsClazz), LocatorUtils.property(thatLocator, "clazz", rhsClazz), lhsClazz, rhsClazz, this.isSetClazz(), that.isSetClazz())) { return false; } } { List lhsFunction; lhsFunction = (this.isSetFunction()?this.getFunction():null); List rhsFunction; rhsFunction = (that.isSetFunction()?that.getFunction():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "function", lhsFunction), LocatorUtils.property(thatLocator, "function", rhsFunction), lhsFunction, rhsFunction, this.isSetFunction(), that.isSetFunction())) { return false; } } { List lhsUsage; lhsUsage = (this.isSetUsage()?this.getUsage():null); List rhsUsage; rhsUsage = (that.isSetUsage()?that.getUsage():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "usage", lhsUsage), LocatorUtils.property(thatLocator, "usage", rhsUsage), lhsUsage, rhsUsage, this.isSetUsage(), that.isSetUsage())) { return false; } } { CodeType lhsSurfaceMaterial; lhsSurfaceMaterial = this.getSurfaceMaterial(); CodeType rhsSurfaceMaterial; rhsSurfaceMaterial = that.getSurfaceMaterial(); if (!strategy.equals(LocatorUtils.property(thisLocator, "surfaceMaterial", lhsSurfaceMaterial), LocatorUtils.property(thatLocator, "surfaceMaterial", rhsSurfaceMaterial), lhsSurfaceMaterial, rhsSurfaceMaterial, this.isSetSurfaceMaterial(), that.isSetSurfaceMaterial())) { return false; } } { MultiSurfacePropertyType lhsLod2MultiSurface; lhsLod2MultiSurface = this.getLod2MultiSurface(); MultiSurfacePropertyType rhsLod2MultiSurface; rhsLod2MultiSurface = that.getLod2MultiSurface(); if (!strategy.equals(LocatorUtils.property(thisLocator, "lod2MultiSurface", lhsLod2MultiSurface), LocatorUtils.property(thatLocator, "lod2MultiSurface", rhsLod2MultiSurface), lhsLod2MultiSurface, rhsLod2MultiSurface, this.isSetLod2MultiSurface(), that.isSetLod2MultiSurface())) { return false; } } { MultiSurfacePropertyType lhsLod3MultiSurface; lhsLod3MultiSurface = this.getLod3MultiSurface(); MultiSurfacePropertyType rhsLod3MultiSurface; rhsLod3MultiSurface = that.getLod3MultiSurface(); if (!strategy.equals(LocatorUtils.property(thisLocator, "lod3MultiSurface", lhsLod3MultiSurface), LocatorUtils.property(thatLocator, "lod3MultiSurface", rhsLod3MultiSurface), lhsLod3MultiSurface, rhsLod3MultiSurface, this.isSetLod3MultiSurface(), that.isSetLod3MultiSurface())) { return false; } } { MultiSurfacePropertyType lhsLod4MultiSurface; lhsLod4MultiSurface = this.getLod4MultiSurface(); MultiSurfacePropertyType rhsLod4MultiSurface; rhsLod4MultiSurface = that.getLod4MultiSurface(); if (!strategy.equals(LocatorUtils.property(thisLocator, "lod4MultiSurface", lhsLod4MultiSurface), LocatorUtils.property(thatLocator, "lod4MultiSurface", rhsLod4MultiSurface), lhsLod4MultiSurface, rhsLod4MultiSurface, this.isSetLod4MultiSurface(), that.isSetLod4MultiSurface())) { return false; } } { List lhsGenericApplicationPropertyOfAuxiliaryTrafficArea; lhsGenericApplicationPropertyOfAuxiliaryTrafficArea = (this.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()?this.getGenericApplicationPropertyOfAuxiliaryTrafficArea():null); List rhsGenericApplicationPropertyOfAuxiliaryTrafficArea; rhsGenericApplicationPropertyOfAuxiliaryTrafficArea = (that.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()?that.getGenericApplicationPropertyOfAuxiliaryTrafficArea():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "genericApplicationPropertyOfAuxiliaryTrafficArea", lhsGenericApplicationPropertyOfAuxiliaryTrafficArea), LocatorUtils.property(thatLocator, "genericApplicationPropertyOfAuxiliaryTrafficArea", rhsGenericApplicationPropertyOfAuxiliaryTrafficArea), lhsGenericApplicationPropertyOfAuxiliaryTrafficArea, rhsGenericApplicationPropertyOfAuxiliaryTrafficArea, this.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea(), that.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea())) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { int currentHashCode = super.hashCode(locator, strategy); { CodeType theClazz; theClazz = this.getClazz(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "clazz", theClazz), currentHashCode, theClazz, this.isSetClazz()); } { List theFunction; theFunction = (this.isSetFunction()?this.getFunction():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "function", theFunction), currentHashCode, theFunction, this.isSetFunction()); } { List theUsage; theUsage = (this.isSetUsage()?this.getUsage():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "usage", theUsage), currentHashCode, theUsage, this.isSetUsage()); } { CodeType theSurfaceMaterial; theSurfaceMaterial = this.getSurfaceMaterial(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "surfaceMaterial", theSurfaceMaterial), currentHashCode, theSurfaceMaterial, this.isSetSurfaceMaterial()); } { MultiSurfacePropertyType theLod2MultiSurface; theLod2MultiSurface = this.getLod2MultiSurface(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "lod2MultiSurface", theLod2MultiSurface), currentHashCode, theLod2MultiSurface, this.isSetLod2MultiSurface()); } { MultiSurfacePropertyType theLod3MultiSurface; theLod3MultiSurface = this.getLod3MultiSurface(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "lod3MultiSurface", theLod3MultiSurface), currentHashCode, theLod3MultiSurface, this.isSetLod3MultiSurface()); } { MultiSurfacePropertyType theLod4MultiSurface; theLod4MultiSurface = this.getLod4MultiSurface(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "lod4MultiSurface", theLod4MultiSurface), currentHashCode, theLod4MultiSurface, this.isSetLod4MultiSurface()); } { List theGenericApplicationPropertyOfAuxiliaryTrafficArea; theGenericApplicationPropertyOfAuxiliaryTrafficArea = (this.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()?this.getGenericApplicationPropertyOfAuxiliaryTrafficArea():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "genericApplicationPropertyOfAuxiliaryTrafficArea", theGenericApplicationPropertyOfAuxiliaryTrafficArea), currentHashCode, theGenericApplicationPropertyOfAuxiliaryTrafficArea, this.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()); } return currentHashCode; } public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } public Object clone() { return copyTo(createNewInstance()); } public Object copyTo(Object target) { final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE; return copyTo(null, target, strategy); } public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) { final Object draftCopy = ((target == null)?createNewInstance():target); super.copyTo(locator, draftCopy, strategy); if (draftCopy instanceof AuxiliaryTrafficAreaType) { final AuxiliaryTrafficAreaType copy = ((AuxiliaryTrafficAreaType) draftCopy); { Boolean clazzShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetClazz()); if (clazzShouldBeCopiedAndSet == Boolean.TRUE) { CodeType sourceClazz; sourceClazz = this.getClazz(); CodeType copyClazz = ((CodeType) strategy.copy(LocatorUtils.property(locator, "clazz", sourceClazz), sourceClazz, this.isSetClazz())); copy.setClazz(copyClazz); } else { if (clazzShouldBeCopiedAndSet == Boolean.FALSE) { copy.clazz = null; } } } { Boolean functionShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetFunction()); if (functionShouldBeCopiedAndSet == Boolean.TRUE) { List sourceFunction; sourceFunction = (this.isSetFunction()?this.getFunction():null); @SuppressWarnings("unchecked") List copyFunction = ((List ) strategy.copy(LocatorUtils.property(locator, "function", sourceFunction), sourceFunction, this.isSetFunction())); copy.unsetFunction(); if (copyFunction!= null) { List uniqueFunctionl = copy.getFunction(); uniqueFunctionl.addAll(copyFunction); } } else { if (functionShouldBeCopiedAndSet == Boolean.FALSE) { copy.unsetFunction(); } } } { Boolean usageShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetUsage()); if (usageShouldBeCopiedAndSet == Boolean.TRUE) { List sourceUsage; sourceUsage = (this.isSetUsage()?this.getUsage():null); @SuppressWarnings("unchecked") List copyUsage = ((List ) strategy.copy(LocatorUtils.property(locator, "usage", sourceUsage), sourceUsage, this.isSetUsage())); copy.unsetUsage(); if (copyUsage!= null) { List uniqueUsagel = copy.getUsage(); uniqueUsagel.addAll(copyUsage); } } else { if (usageShouldBeCopiedAndSet == Boolean.FALSE) { copy.unsetUsage(); } } } { Boolean surfaceMaterialShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetSurfaceMaterial()); if (surfaceMaterialShouldBeCopiedAndSet == Boolean.TRUE) { CodeType sourceSurfaceMaterial; sourceSurfaceMaterial = this.getSurfaceMaterial(); CodeType copySurfaceMaterial = ((CodeType) strategy.copy(LocatorUtils.property(locator, "surfaceMaterial", sourceSurfaceMaterial), sourceSurfaceMaterial, this.isSetSurfaceMaterial())); copy.setSurfaceMaterial(copySurfaceMaterial); } else { if (surfaceMaterialShouldBeCopiedAndSet == Boolean.FALSE) { copy.surfaceMaterial = null; } } } { Boolean lod2MultiSurfaceShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetLod2MultiSurface()); if (lod2MultiSurfaceShouldBeCopiedAndSet == Boolean.TRUE) { MultiSurfacePropertyType sourceLod2MultiSurface; sourceLod2MultiSurface = this.getLod2MultiSurface(); MultiSurfacePropertyType copyLod2MultiSurface = ((MultiSurfacePropertyType) strategy.copy(LocatorUtils.property(locator, "lod2MultiSurface", sourceLod2MultiSurface), sourceLod2MultiSurface, this.isSetLod2MultiSurface())); copy.setLod2MultiSurface(copyLod2MultiSurface); } else { if (lod2MultiSurfaceShouldBeCopiedAndSet == Boolean.FALSE) { copy.lod2MultiSurface = null; } } } { Boolean lod3MultiSurfaceShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetLod3MultiSurface()); if (lod3MultiSurfaceShouldBeCopiedAndSet == Boolean.TRUE) { MultiSurfacePropertyType sourceLod3MultiSurface; sourceLod3MultiSurface = this.getLod3MultiSurface(); MultiSurfacePropertyType copyLod3MultiSurface = ((MultiSurfacePropertyType) strategy.copy(LocatorUtils.property(locator, "lod3MultiSurface", sourceLod3MultiSurface), sourceLod3MultiSurface, this.isSetLod3MultiSurface())); copy.setLod3MultiSurface(copyLod3MultiSurface); } else { if (lod3MultiSurfaceShouldBeCopiedAndSet == Boolean.FALSE) { copy.lod3MultiSurface = null; } } } { Boolean lod4MultiSurfaceShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetLod4MultiSurface()); if (lod4MultiSurfaceShouldBeCopiedAndSet == Boolean.TRUE) { MultiSurfacePropertyType sourceLod4MultiSurface; sourceLod4MultiSurface = this.getLod4MultiSurface(); MultiSurfacePropertyType copyLod4MultiSurface = ((MultiSurfacePropertyType) strategy.copy(LocatorUtils.property(locator, "lod4MultiSurface", sourceLod4MultiSurface), sourceLod4MultiSurface, this.isSetLod4MultiSurface())); copy.setLod4MultiSurface(copyLod4MultiSurface); } else { if (lod4MultiSurfaceShouldBeCopiedAndSet == Boolean.FALSE) { copy.lod4MultiSurface = null; } } } { Boolean genericApplicationPropertyOfAuxiliaryTrafficAreaShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()); if (genericApplicationPropertyOfAuxiliaryTrafficAreaShouldBeCopiedAndSet == Boolean.TRUE) { List sourceGenericApplicationPropertyOfAuxiliaryTrafficArea; sourceGenericApplicationPropertyOfAuxiliaryTrafficArea = (this.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()?this.getGenericApplicationPropertyOfAuxiliaryTrafficArea():null); @SuppressWarnings("unchecked") List copyGenericApplicationPropertyOfAuxiliaryTrafficArea = ((List ) strategy.copy(LocatorUtils.property(locator, "genericApplicationPropertyOfAuxiliaryTrafficArea", sourceGenericApplicationPropertyOfAuxiliaryTrafficArea), sourceGenericApplicationPropertyOfAuxiliaryTrafficArea, this.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea())); copy.unsetGenericApplicationPropertyOfAuxiliaryTrafficArea(); if (copyGenericApplicationPropertyOfAuxiliaryTrafficArea!= null) { List uniqueGenericApplicationPropertyOfAuxiliaryTrafficAreal = copy.getGenericApplicationPropertyOfAuxiliaryTrafficArea(); uniqueGenericApplicationPropertyOfAuxiliaryTrafficAreal.addAll(copyGenericApplicationPropertyOfAuxiliaryTrafficArea); } } else { if (genericApplicationPropertyOfAuxiliaryTrafficAreaShouldBeCopiedAndSet == Boolean.FALSE) { copy.unsetGenericApplicationPropertyOfAuxiliaryTrafficArea(); } } } } return draftCopy; } public Object createNewInstance() { return new AuxiliaryTrafficAreaType(); } public void mergeFrom(Object left, Object right) { final MergeStrategy2 strategy = JAXBMergeStrategy.INSTANCE; mergeFrom(null, null, left, right, strategy); } public void mergeFrom(ObjectLocator leftLocator, ObjectLocator rightLocator, Object left, Object right, MergeStrategy2 strategy) { super.mergeFrom(leftLocator, rightLocator, left, right, strategy); if (right instanceof AuxiliaryTrafficAreaType) { final AuxiliaryTrafficAreaType target = this; final AuxiliaryTrafficAreaType leftObject = ((AuxiliaryTrafficAreaType) left); final AuxiliaryTrafficAreaType rightObject = ((AuxiliaryTrafficAreaType) right); { Boolean clazzShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetClazz(), rightObject.isSetClazz()); if (clazzShouldBeMergedAndSet == Boolean.TRUE) { CodeType lhsClazz; lhsClazz = leftObject.getClazz(); CodeType rhsClazz; rhsClazz = rightObject.getClazz(); CodeType mergedClazz = ((CodeType) strategy.merge(LocatorUtils.property(leftLocator, "clazz", lhsClazz), LocatorUtils.property(rightLocator, "clazz", rhsClazz), lhsClazz, rhsClazz, leftObject.isSetClazz(), rightObject.isSetClazz())); target.setClazz(mergedClazz); } else { if (clazzShouldBeMergedAndSet == Boolean.FALSE) { target.clazz = null; } } } { Boolean functionShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetFunction(), rightObject.isSetFunction()); if (functionShouldBeMergedAndSet == Boolean.TRUE) { List lhsFunction; lhsFunction = (leftObject.isSetFunction()?leftObject.getFunction():null); List rhsFunction; rhsFunction = (rightObject.isSetFunction()?rightObject.getFunction():null); List mergedFunction = ((List ) strategy.merge(LocatorUtils.property(leftLocator, "function", lhsFunction), LocatorUtils.property(rightLocator, "function", rhsFunction), lhsFunction, rhsFunction, leftObject.isSetFunction(), rightObject.isSetFunction())); target.unsetFunction(); if (mergedFunction!= null) { List uniqueFunctionl = target.getFunction(); uniqueFunctionl.addAll(mergedFunction); } } else { if (functionShouldBeMergedAndSet == Boolean.FALSE) { target.unsetFunction(); } } } { Boolean usageShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetUsage(), rightObject.isSetUsage()); if (usageShouldBeMergedAndSet == Boolean.TRUE) { List lhsUsage; lhsUsage = (leftObject.isSetUsage()?leftObject.getUsage():null); List rhsUsage; rhsUsage = (rightObject.isSetUsage()?rightObject.getUsage():null); List mergedUsage = ((List ) strategy.merge(LocatorUtils.property(leftLocator, "usage", lhsUsage), LocatorUtils.property(rightLocator, "usage", rhsUsage), lhsUsage, rhsUsage, leftObject.isSetUsage(), rightObject.isSetUsage())); target.unsetUsage(); if (mergedUsage!= null) { List uniqueUsagel = target.getUsage(); uniqueUsagel.addAll(mergedUsage); } } else { if (usageShouldBeMergedAndSet == Boolean.FALSE) { target.unsetUsage(); } } } { Boolean surfaceMaterialShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetSurfaceMaterial(), rightObject.isSetSurfaceMaterial()); if (surfaceMaterialShouldBeMergedAndSet == Boolean.TRUE) { CodeType lhsSurfaceMaterial; lhsSurfaceMaterial = leftObject.getSurfaceMaterial(); CodeType rhsSurfaceMaterial; rhsSurfaceMaterial = rightObject.getSurfaceMaterial(); CodeType mergedSurfaceMaterial = ((CodeType) strategy.merge(LocatorUtils.property(leftLocator, "surfaceMaterial", lhsSurfaceMaterial), LocatorUtils.property(rightLocator, "surfaceMaterial", rhsSurfaceMaterial), lhsSurfaceMaterial, rhsSurfaceMaterial, leftObject.isSetSurfaceMaterial(), rightObject.isSetSurfaceMaterial())); target.setSurfaceMaterial(mergedSurfaceMaterial); } else { if (surfaceMaterialShouldBeMergedAndSet == Boolean.FALSE) { target.surfaceMaterial = null; } } } { Boolean lod2MultiSurfaceShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetLod2MultiSurface(), rightObject.isSetLod2MultiSurface()); if (lod2MultiSurfaceShouldBeMergedAndSet == Boolean.TRUE) { MultiSurfacePropertyType lhsLod2MultiSurface; lhsLod2MultiSurface = leftObject.getLod2MultiSurface(); MultiSurfacePropertyType rhsLod2MultiSurface; rhsLod2MultiSurface = rightObject.getLod2MultiSurface(); MultiSurfacePropertyType mergedLod2MultiSurface = ((MultiSurfacePropertyType) strategy.merge(LocatorUtils.property(leftLocator, "lod2MultiSurface", lhsLod2MultiSurface), LocatorUtils.property(rightLocator, "lod2MultiSurface", rhsLod2MultiSurface), lhsLod2MultiSurface, rhsLod2MultiSurface, leftObject.isSetLod2MultiSurface(), rightObject.isSetLod2MultiSurface())); target.setLod2MultiSurface(mergedLod2MultiSurface); } else { if (lod2MultiSurfaceShouldBeMergedAndSet == Boolean.FALSE) { target.lod2MultiSurface = null; } } } { Boolean lod3MultiSurfaceShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetLod3MultiSurface(), rightObject.isSetLod3MultiSurface()); if (lod3MultiSurfaceShouldBeMergedAndSet == Boolean.TRUE) { MultiSurfacePropertyType lhsLod3MultiSurface; lhsLod3MultiSurface = leftObject.getLod3MultiSurface(); MultiSurfacePropertyType rhsLod3MultiSurface; rhsLod3MultiSurface = rightObject.getLod3MultiSurface(); MultiSurfacePropertyType mergedLod3MultiSurface = ((MultiSurfacePropertyType) strategy.merge(LocatorUtils.property(leftLocator, "lod3MultiSurface", lhsLod3MultiSurface), LocatorUtils.property(rightLocator, "lod3MultiSurface", rhsLod3MultiSurface), lhsLod3MultiSurface, rhsLod3MultiSurface, leftObject.isSetLod3MultiSurface(), rightObject.isSetLod3MultiSurface())); target.setLod3MultiSurface(mergedLod3MultiSurface); } else { if (lod3MultiSurfaceShouldBeMergedAndSet == Boolean.FALSE) { target.lod3MultiSurface = null; } } } { Boolean lod4MultiSurfaceShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetLod4MultiSurface(), rightObject.isSetLod4MultiSurface()); if (lod4MultiSurfaceShouldBeMergedAndSet == Boolean.TRUE) { MultiSurfacePropertyType lhsLod4MultiSurface; lhsLod4MultiSurface = leftObject.getLod4MultiSurface(); MultiSurfacePropertyType rhsLod4MultiSurface; rhsLod4MultiSurface = rightObject.getLod4MultiSurface(); MultiSurfacePropertyType mergedLod4MultiSurface = ((MultiSurfacePropertyType) strategy.merge(LocatorUtils.property(leftLocator, "lod4MultiSurface", lhsLod4MultiSurface), LocatorUtils.property(rightLocator, "lod4MultiSurface", rhsLod4MultiSurface), lhsLod4MultiSurface, rhsLod4MultiSurface, leftObject.isSetLod4MultiSurface(), rightObject.isSetLod4MultiSurface())); target.setLod4MultiSurface(mergedLod4MultiSurface); } else { if (lod4MultiSurfaceShouldBeMergedAndSet == Boolean.FALSE) { target.lod4MultiSurface = null; } } } { Boolean genericApplicationPropertyOfAuxiliaryTrafficAreaShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea(), rightObject.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()); if (genericApplicationPropertyOfAuxiliaryTrafficAreaShouldBeMergedAndSet == Boolean.TRUE) { List lhsGenericApplicationPropertyOfAuxiliaryTrafficArea; lhsGenericApplicationPropertyOfAuxiliaryTrafficArea = (leftObject.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()?leftObject.getGenericApplicationPropertyOfAuxiliaryTrafficArea():null); List rhsGenericApplicationPropertyOfAuxiliaryTrafficArea; rhsGenericApplicationPropertyOfAuxiliaryTrafficArea = (rightObject.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea()?rightObject.getGenericApplicationPropertyOfAuxiliaryTrafficArea():null); List mergedGenericApplicationPropertyOfAuxiliaryTrafficArea = ((List ) strategy.merge(LocatorUtils.property(leftLocator, "genericApplicationPropertyOfAuxiliaryTrafficArea", lhsGenericApplicationPropertyOfAuxiliaryTrafficArea), LocatorUtils.property(rightLocator, "genericApplicationPropertyOfAuxiliaryTrafficArea", rhsGenericApplicationPropertyOfAuxiliaryTrafficArea), lhsGenericApplicationPropertyOfAuxiliaryTrafficArea, rhsGenericApplicationPropertyOfAuxiliaryTrafficArea, leftObject.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea(), rightObject.isSetGenericApplicationPropertyOfAuxiliaryTrafficArea())); target.unsetGenericApplicationPropertyOfAuxiliaryTrafficArea(); if (mergedGenericApplicationPropertyOfAuxiliaryTrafficArea!= null) { List uniqueGenericApplicationPropertyOfAuxiliaryTrafficAreal = target.getGenericApplicationPropertyOfAuxiliaryTrafficArea(); uniqueGenericApplicationPropertyOfAuxiliaryTrafficAreal.addAll(mergedGenericApplicationPropertyOfAuxiliaryTrafficArea); } } else { if (genericApplicationPropertyOfAuxiliaryTrafficAreaShouldBeMergedAndSet == Boolean.FALSE) { target.unsetGenericApplicationPropertyOfAuxiliaryTrafficArea(); } } } } } public void setFunction(List value) { this.function = null; if (value!= null) { List draftl = this.getFunction(); draftl.addAll(value); } } public void setUsage(List value) { this.usage = null; if (value!= null) { List draftl = this.getUsage(); draftl.addAll(value); } } public void setGenericApplicationPropertyOfAuxiliaryTrafficArea(List value) { this.genericApplicationPropertyOfAuxiliaryTrafficArea = null; if (value!= null) { List draftl = this.getGenericApplicationPropertyOfAuxiliaryTrafficArea(); draftl.addAll(value); } } public AuxiliaryTrafficAreaType withClazz(CodeType value) { setClazz(value); return this; } public AuxiliaryTrafficAreaType withFunction(CodeType... values) { if (values!= null) { for (CodeType value: values) { getFunction().add(value); } } return this; } public AuxiliaryTrafficAreaType withFunction(Collection values) { if (values!= null) { getFunction().addAll(values); } return this; } public AuxiliaryTrafficAreaType withUsage(CodeType... values) { if (values!= null) { for (CodeType value: values) { getUsage().add(value); } } return this; } public AuxiliaryTrafficAreaType withUsage(Collection values) { if (values!= null) { getUsage().addAll(values); } return this; } public AuxiliaryTrafficAreaType withSurfaceMaterial(CodeType value) { setSurfaceMaterial(value); return this; } public AuxiliaryTrafficAreaType withLod2MultiSurface(MultiSurfacePropertyType value) { setLod2MultiSurface(value); return this; } public AuxiliaryTrafficAreaType withLod3MultiSurface(MultiSurfacePropertyType value) { setLod3MultiSurface(value); return this; } public AuxiliaryTrafficAreaType withLod4MultiSurface(MultiSurfacePropertyType value) { setLod4MultiSurface(value); return this; } public AuxiliaryTrafficAreaType withGenericApplicationPropertyOfAuxiliaryTrafficArea(Object... values) { if (values!= null) { for (Object value: values) { getGenericApplicationPropertyOfAuxiliaryTrafficArea().add(value); } } return this; } public AuxiliaryTrafficAreaType withGenericApplicationPropertyOfAuxiliaryTrafficArea(Collection values) { if (values!= null) { getGenericApplicationPropertyOfAuxiliaryTrafficArea().addAll(values); } return this; } public AuxiliaryTrafficAreaType withFunction(List value) { setFunction(value); return this; } public AuxiliaryTrafficAreaType withUsage(List value) { setUsage(value); return this; } public AuxiliaryTrafficAreaType withGenericApplicationPropertyOfAuxiliaryTrafficArea(List value) { setGenericApplicationPropertyOfAuxiliaryTrafficArea(value); return this; } @Override public AuxiliaryTrafficAreaType withGenericApplicationPropertyOfTransportationObject(Object... values) { if (values!= null) { for (Object value: values) { getGenericApplicationPropertyOfTransportationObject().add(value); } } return this; } @Override public AuxiliaryTrafficAreaType withGenericApplicationPropertyOfTransportationObject(Collection values) { if (values!= null) { getGenericApplicationPropertyOfTransportationObject().addAll(values); } return this; } @Override public AuxiliaryTrafficAreaType withGenericApplicationPropertyOfTransportationObject(List value) { setGenericApplicationPropertyOfTransportationObject(value); return this; } @Override public AuxiliaryTrafficAreaType withCreationDate(XMLGregorianCalendar value) { setCreationDate(value); return this; } @Override public AuxiliaryTrafficAreaType withTerminationDate(XMLGregorianCalendar value) { setTerminationDate(value); return this; } @Override public AuxiliaryTrafficAreaType withExternalReference(ExternalReferenceType... values) { if (values!= null) { for (ExternalReferenceType value: values) { getExternalReference().add(value); } } return this; } @Override public AuxiliaryTrafficAreaType withExternalReference(Collection values) { if (values!= null) { getExternalReference().addAll(values); } return this; } @Override public AuxiliaryTrafficAreaType withGeneralizesTo(GeneralizationRelationType... values) { if (values!= null) { for (GeneralizationRelationType value: values) { getGeneralizesTo().add(value); } } return this; } @Override public AuxiliaryTrafficAreaType withGeneralizesTo(Collection values) { if (values!= null) { getGeneralizesTo().addAll(values); } return this; } @Override public AuxiliaryTrafficAreaType withRelativeToTerrain(RelativeToTerrainType value) { setRelativeToTerrain(value); return this; } @Override public AuxiliaryTrafficAreaType withRelativeToWater(RelativeToWaterType value) { setRelativeToWater(value); return this; } @Override public AuxiliaryTrafficAreaType withGenericApplicationPropertyOfCityObject(JAXBElement ... values) { if (values!= null) { for (JAXBElement value: values) { getGenericApplicationPropertyOfCityObject().add(value); } } return this; } @Override public AuxiliaryTrafficAreaType withGenericApplicationPropertyOfCityObject(Collection> values) { if (values!= null) { getGenericApplicationPropertyOfCityObject().addAll(values); } return this; } @Override public AuxiliaryTrafficAreaType withExternalReference(List value) { setExternalReference(value); return this; } @Override public AuxiliaryTrafficAreaType withGeneralizesTo(List value) { setGeneralizesTo(value); return this; } @Override public AuxiliaryTrafficAreaType withGenericApplicationPropertyOfCityObject(List> value) { setGenericApplicationPropertyOfCityObject(value); return this; } }