
org.openestate.is24.restapi.xml.realestateproject.RealEstateProjects Maven / Gradle / Ivy
package org.openestate.is24.restapi.xml.realestateproject;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
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.JAXBCopyStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
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;
/**
* Liste von Bauprojekte
*
* Java class for RealEstateProjects complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="RealEstateProjects">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="realEstateProject" type="{http://rest.immobilienscout24.de/schema/offer/realestateproject/1.0}RealEstateProject" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RealEstateProjects", propOrder = {
"realEstateProject"
})
public class RealEstateProjects implements Serializable, Cloneable, CopyTo2, Equals2, ToString2
{
protected List realEstateProject;
/**
* Gets the value of the realEstateProject 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 realEstateProject property.
*
*
* For example, to add a new item, do as follows:
*
* getRealEstateProject().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link RealEstateProject }
*
*
*/
public List getRealEstateProject() {
if (realEstateProject == null) {
realEstateProject = new ArrayList();
}
return this.realEstateProject;
}
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) {
{
List theRealEstateProject;
theRealEstateProject = (((this.realEstateProject!= null)&&(!this.realEstateProject.isEmpty()))?this.getRealEstateProject():null);
strategy.appendField(locator, this, "realEstateProject", buffer, theRealEstateProject, ((this.realEstateProject!= null)&&(!this.realEstateProject.isEmpty())));
}
return buffer;
}
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);
if (draftCopy instanceof RealEstateProjects) {
final RealEstateProjects copy = ((RealEstateProjects) draftCopy);
{
Boolean realEstateProjectShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, ((this.realEstateProject!= null)&&(!this.realEstateProject.isEmpty())));
if (realEstateProjectShouldBeCopiedAndSet == Boolean.TRUE) {
List sourceRealEstateProject;
sourceRealEstateProject = (((this.realEstateProject!= null)&&(!this.realEstateProject.isEmpty()))?this.getRealEstateProject():null);
@SuppressWarnings("unchecked")
List copyRealEstateProject = ((List ) strategy.copy(LocatorUtils.property(locator, "realEstateProject", sourceRealEstateProject), sourceRealEstateProject, ((this.realEstateProject!= null)&&(!this.realEstateProject.isEmpty()))));
copy.realEstateProject = null;
if (copyRealEstateProject!= null) {
List uniqueRealEstateProjectl = copy.getRealEstateProject();
uniqueRealEstateProjectl.addAll(copyRealEstateProject);
}
} else {
if (realEstateProjectShouldBeCopiedAndSet == Boolean.FALSE) {
copy.realEstateProject = null;
}
}
}
}
return draftCopy;
}
public Object createNewInstance() {
return new RealEstateProjects();
}
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;
}
final RealEstateProjects that = ((RealEstateProjects) object);
{
List lhsRealEstateProject;
lhsRealEstateProject = (((this.realEstateProject!= null)&&(!this.realEstateProject.isEmpty()))?this.getRealEstateProject():null);
List rhsRealEstateProject;
rhsRealEstateProject = (((that.realEstateProject!= null)&&(!that.realEstateProject.isEmpty()))?that.getRealEstateProject():null);
if (!strategy.equals(LocatorUtils.property(thisLocator, "realEstateProject", lhsRealEstateProject), LocatorUtils.property(thatLocator, "realEstateProject", rhsRealEstateProject), lhsRealEstateProject, rhsRealEstateProject, ((this.realEstateProject!= null)&&(!this.realEstateProject.isEmpty())), ((that.realEstateProject!= null)&&(!that.realEstateProject.isEmpty())))) {
return false;
}
}
return true;
}
public boolean equals(Object object) {
final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE;
return equals(null, null, object, strategy);
}
}