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

org.openestate.io.is24_xml.xml.GrundstueckWohnenKauf Maven / Gradle / Ivy

Go to download

OpenEstate-IO-IS24-XML is a Java library to read and write real estate data in the IS24-XML format, that was used by immobilienscout24.de until 2014.

There is a newer version: 1.4
Show newest version

package org.openestate.io.is24_xml.xml;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;
import org.jvnet.jaxb2_commons.lang.CopyStrategy;
import org.jvnet.jaxb2_commons.lang.CopyTo;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBCopyStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;

public class GrundstueckWohnenKauf
    extends JAXBElement
{

    protected final static QName NAME = new QName("http://www.immobilienscout24.de/immobilientransfer", "GrundstueckWohnenKauf");

    public GrundstueckWohnenKauf(GrundstueckWohnenKauf.Type value) {
        super(NAME, ((Class) GrundstueckWohnenKauf.Type.class), null, value);
    }

    public GrundstueckWohnenKauf() {
        super(NAME, ((Class) GrundstueckWohnenKauf.Type.class), null, null);
    }


    /**
     * 

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <extension base="{http://www.immobilienscout24.de/immobilientransfer}GrundstueckTypBase">
     *       <sequence>
     *         <element name="Vermarktung" type="{http://www.immobilienscout24.de/immobilientransfer}VermarktungGrundstueckWohnenKaufTyp"/>
     *         <element name="BebaubarMit" type="{http://www.immobilienscout24.de/immobilientransfer}GrundstueckWohnenEmpfohleneNutzung" minOccurs="0"/>
     *       </sequence>
     *       <attribute name="Objektkategorie2" type="{http://www.immobilienscout24.de/immobilientransfer}GrundstueckWohnenKategorienTyp" />
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "vermarktung", "bebaubarMit" }) public static class Type extends GrundstueckTypBase implements Cloneable, CopyTo, Equals, ToString { @XmlElement(name = "Vermarktung", required = true) protected VermarktungGrundstueckWohnenKaufTyp vermarktung; @XmlElement(name = "BebaubarMit") protected GrundstueckWohnenEmpfohleneNutzung bebaubarMit; @XmlAttribute(name = "Objektkategorie2") protected GrundstueckWohnenKategorienTyp objektkategorie2; /** * Gets the value of the vermarktung property. * * @return * possible object is * {@link VermarktungGrundstueckWohnenKaufTyp } * */ public VermarktungGrundstueckWohnenKaufTyp getVermarktung() { return vermarktung; } /** * Sets the value of the vermarktung property. * * @param value * allowed object is * {@link VermarktungGrundstueckWohnenKaufTyp } * */ public void setVermarktung(VermarktungGrundstueckWohnenKaufTyp value) { this.vermarktung = value; } /** * Gets the value of the bebaubarMit property. * * @return * possible object is * {@link GrundstueckWohnenEmpfohleneNutzung } * */ public GrundstueckWohnenEmpfohleneNutzung getBebaubarMit() { return bebaubarMit; } /** * Sets the value of the bebaubarMit property. * * @param value * allowed object is * {@link GrundstueckWohnenEmpfohleneNutzung } * */ public void setBebaubarMit(GrundstueckWohnenEmpfohleneNutzung value) { this.bebaubarMit = value; } /** * Gets the value of the objektkategorie2 property. * * @return * possible object is * {@link GrundstueckWohnenKategorienTyp } * */ public GrundstueckWohnenKategorienTyp getObjektkategorie2() { return objektkategorie2; } /** * Sets the value of the objektkategorie2 property. * * @param value * allowed object is * {@link GrundstueckWohnenKategorienTyp } * */ public void setObjektkategorie2(GrundstueckWohnenKategorienTyp value) { this.objektkategorie2 = value; } public String toString() { final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { super.appendFields(locator, buffer, strategy); { VermarktungGrundstueckWohnenKaufTyp theVermarktung; theVermarktung = this.getVermarktung(); strategy.appendField(locator, this, "vermarktung", buffer, theVermarktung); } { GrundstueckWohnenEmpfohleneNutzung theBebaubarMit; theBebaubarMit = this.getBebaubarMit(); strategy.appendField(locator, this, "bebaubarMit", buffer, theBebaubarMit); } { GrundstueckWohnenKategorienTyp theObjektkategorie2; theObjektkategorie2 = this.getObjektkategorie2(); strategy.appendField(locator, this, "objektkategorie2", buffer, theObjektkategorie2); } return buffer; } public Object clone() { return copyTo(createNewInstance()); } public Object copyTo(Object target) { final CopyStrategy strategy = JAXBCopyStrategy.INSTANCE; return copyTo(null, target, strategy); } public Object copyTo(ObjectLocator locator, Object target, CopyStrategy strategy) { final Object draftCopy = ((target == null)?createNewInstance():target); super.copyTo(locator, draftCopy, strategy); if (draftCopy instanceof GrundstueckWohnenKauf.Type) { final GrundstueckWohnenKauf.Type copy = ((GrundstueckWohnenKauf.Type) draftCopy); if (this.vermarktung!= null) { VermarktungGrundstueckWohnenKaufTyp sourceVermarktung; sourceVermarktung = this.getVermarktung(); VermarktungGrundstueckWohnenKaufTyp copyVermarktung = ((VermarktungGrundstueckWohnenKaufTyp) strategy.copy(LocatorUtils.property(locator, "vermarktung", sourceVermarktung), sourceVermarktung)); copy.setVermarktung(copyVermarktung); } else { copy.vermarktung = null; } if (this.bebaubarMit!= null) { GrundstueckWohnenEmpfohleneNutzung sourceBebaubarMit; sourceBebaubarMit = this.getBebaubarMit(); GrundstueckWohnenEmpfohleneNutzung copyBebaubarMit = ((GrundstueckWohnenEmpfohleneNutzung) strategy.copy(LocatorUtils.property(locator, "bebaubarMit", sourceBebaubarMit), sourceBebaubarMit)); copy.setBebaubarMit(copyBebaubarMit); } else { copy.bebaubarMit = null; } if (this.objektkategorie2 != null) { GrundstueckWohnenKategorienTyp sourceObjektkategorie2; sourceObjektkategorie2 = this.getObjektkategorie2(); GrundstueckWohnenKategorienTyp copyObjektkategorie2 = ((GrundstueckWohnenKategorienTyp) strategy.copy(LocatorUtils.property(locator, "objektkategorie2", sourceObjektkategorie2), sourceObjektkategorie2)); copy.setObjektkategorie2(copyObjektkategorie2); } else { copy.objektkategorie2 = null; } } return draftCopy; } public Object createNewInstance() { return new GrundstueckWohnenKauf.Type(); } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy 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 GrundstueckWohnenKauf.Type that = ((GrundstueckWohnenKauf.Type) object); { VermarktungGrundstueckWohnenKaufTyp lhsVermarktung; lhsVermarktung = this.getVermarktung(); VermarktungGrundstueckWohnenKaufTyp rhsVermarktung; rhsVermarktung = that.getVermarktung(); if (!strategy.equals(LocatorUtils.property(thisLocator, "vermarktung", lhsVermarktung), LocatorUtils.property(thatLocator, "vermarktung", rhsVermarktung), lhsVermarktung, rhsVermarktung)) { return false; } } { GrundstueckWohnenEmpfohleneNutzung lhsBebaubarMit; lhsBebaubarMit = this.getBebaubarMit(); GrundstueckWohnenEmpfohleneNutzung rhsBebaubarMit; rhsBebaubarMit = that.getBebaubarMit(); if (!strategy.equals(LocatorUtils.property(thisLocator, "bebaubarMit", lhsBebaubarMit), LocatorUtils.property(thatLocator, "bebaubarMit", rhsBebaubarMit), lhsBebaubarMit, rhsBebaubarMit)) { return false; } } { GrundstueckWohnenKategorienTyp lhsObjektkategorie2; lhsObjektkategorie2 = this.getObjektkategorie2(); GrundstueckWohnenKategorienTyp rhsObjektkategorie2; rhsObjektkategorie2 = that.getObjektkategorie2(); if (!strategy.equals(LocatorUtils.property(thisLocator, "objektkategorie2", lhsObjektkategorie2), LocatorUtils.property(thatLocator, "objektkategorie2", rhsObjektkategorie2), lhsObjektkategorie2, rhsObjektkategorie2)) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy