// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.07.27 at 04:06:37 PM EDT // package org.isotc211._2005.gmd; import java.io.Serializable; import java.util.ArrayList; import java.util.List; import javax.validation.Valid; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; 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 org.isotc211._2005.gco.AbstractObjectType; 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; /** * Identifiable collection of data * * <p>Java class for DS_DataSet_Type complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DS_DataSet_Type"> * <complexContent> * <extension base="{http://www.isotc211.org/2005/gco}AbstractObject_Type"> * <sequence> * <element name="has" type="{http://www.isotc211.org/2005/gmd}MD_Metadata_PropertyType" maxOccurs="unbounded"/> * <element name="partOf" type="{http://www.isotc211.org/2005/gmd}DS_Aggregate_PropertyType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DS_DataSet_Type", propOrder = { "has", "partOf" }) public class DSDataSetType extends AbstractObjectType implements Serializable, Cloneable, CopyTo2, Equals2, HashCode2, MergeFrom2, ToString2 { private final static long serialVersionUID = 1L; @XmlElement(required = true) @NotNull(message = "DSDataSetType.has {javax.validation.constraints.NotNull.message}") @Size(min = 1) @Valid protected List<MDMetadataPropertyType> has; @Valid protected List<DSAggregatePropertyType> partOf; /** * Gets the value of the has 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 has property. * * <p> * For example, to add a new item, do as follows: * <pre> * getHas().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MDMetadataPropertyType } * * */ public List<MDMetadataPropertyType> getHas() { if (has == null) { has = new ArrayList<MDMetadataPropertyType>(); } return this.has; } public boolean isSetHas() { return ((this.has!= null)&&(!this.has.isEmpty())); } public void unsetHas() { this.has = null; } /** * Gets the value of the partOf 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 partOf property. * * <p> * For example, to add a new item, do as follows: * <pre> * getPartOf().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link DSAggregatePropertyType } * * */ public List<DSAggregatePropertyType> getPartOf() { if (partOf == null) { partOf = new ArrayList<DSAggregatePropertyType>(); } return this.partOf; } public boolean isSetPartOf() { return ((this.partOf!= null)&&(!this.partOf.isEmpty())); } public void unsetPartOf() { this.partOf = 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); { List<MDMetadataPropertyType> theHas; theHas = (this.isSetHas()?this.getHas():null); strategy.appendField(locator, this, "has", buffer, theHas, this.isSetHas()); } { List<DSAggregatePropertyType> thePartOf; thePartOf = (this.isSetPartOf()?this.getPartOf():null); strategy.appendField(locator, this, "partOf", buffer, thePartOf, this.isSetPartOf()); } 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 DSDataSetType that = ((DSDataSetType) object); { List<MDMetadataPropertyType> lhsHas; lhsHas = (this.isSetHas()?this.getHas():null); List<MDMetadataPropertyType> rhsHas; rhsHas = (that.isSetHas()?that.getHas():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "has", lhsHas), LocatorUtils.property(thatLocator, "has", rhsHas), lhsHas, rhsHas, this.isSetHas(), that.isSetHas())) { return false; } } { List<DSAggregatePropertyType> lhsPartOf; lhsPartOf = (this.isSetPartOf()?this.getPartOf():null); List<DSAggregatePropertyType> rhsPartOf; rhsPartOf = (that.isSetPartOf()?that.getPartOf():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "partOf", lhsPartOf), LocatorUtils.property(thatLocator, "partOf", rhsPartOf), lhsPartOf, rhsPartOf, this.isSetPartOf(), that.isSetPartOf())) { 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); { List<MDMetadataPropertyType> theHas; theHas = (this.isSetHas()?this.getHas():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "has", theHas), currentHashCode, theHas, this.isSetHas()); } { List<DSAggregatePropertyType> thePartOf; thePartOf = (this.isSetPartOf()?this.getPartOf():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "partOf", thePartOf), currentHashCode, thePartOf, this.isSetPartOf()); } 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 DSDataSetType) { final DSDataSetType copy = ((DSDataSetType) draftCopy); { Boolean hasShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetHas()); if (hasShouldBeCopiedAndSet == Boolean.TRUE) { List<MDMetadataPropertyType> sourceHas; sourceHas = (this.isSetHas()?this.getHas():null); @SuppressWarnings("unchecked") List<MDMetadataPropertyType> copyHas = ((List<MDMetadataPropertyType> ) strategy.copy(LocatorUtils.property(locator, "has", sourceHas), sourceHas, this.isSetHas())); copy.unsetHas(); if (copyHas!= null) { List<MDMetadataPropertyType> uniqueHasl = copy.getHas(); uniqueHasl.addAll(copyHas); } } else { if (hasShouldBeCopiedAndSet == Boolean.FALSE) { copy.unsetHas(); } } } { Boolean partOfShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetPartOf()); if (partOfShouldBeCopiedAndSet == Boolean.TRUE) { List<DSAggregatePropertyType> sourcePartOf; sourcePartOf = (this.isSetPartOf()?this.getPartOf():null); @SuppressWarnings("unchecked") List<DSAggregatePropertyType> copyPartOf = ((List<DSAggregatePropertyType> ) strategy.copy(LocatorUtils.property(locator, "partOf", sourcePartOf), sourcePartOf, this.isSetPartOf())); copy.unsetPartOf(); if (copyPartOf!= null) { List<DSAggregatePropertyType> uniquePartOfl = copy.getPartOf(); uniquePartOfl.addAll(copyPartOf); } } else { if (partOfShouldBeCopiedAndSet == Boolean.FALSE) { copy.unsetPartOf(); } } } } return draftCopy; } public Object createNewInstance() { return new DSDataSetType(); } 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 DSDataSetType) { final DSDataSetType target = this; final DSDataSetType leftObject = ((DSDataSetType) left); final DSDataSetType rightObject = ((DSDataSetType) right); { Boolean hasShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetHas(), rightObject.isSetHas()); if (hasShouldBeMergedAndSet == Boolean.TRUE) { List<MDMetadataPropertyType> lhsHas; lhsHas = (leftObject.isSetHas()?leftObject.getHas():null); List<MDMetadataPropertyType> rhsHas; rhsHas = (rightObject.isSetHas()?rightObject.getHas():null); List<MDMetadataPropertyType> mergedHas = ((List<MDMetadataPropertyType> ) strategy.merge(LocatorUtils.property(leftLocator, "has", lhsHas), LocatorUtils.property(rightLocator, "has", rhsHas), lhsHas, rhsHas, leftObject.isSetHas(), rightObject.isSetHas())); target.unsetHas(); if (mergedHas!= null) { List<MDMetadataPropertyType> uniqueHasl = target.getHas(); uniqueHasl.addAll(mergedHas); } } else { if (hasShouldBeMergedAndSet == Boolean.FALSE) { target.unsetHas(); } } } { Boolean partOfShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetPartOf(), rightObject.isSetPartOf()); if (partOfShouldBeMergedAndSet == Boolean.TRUE) { List<DSAggregatePropertyType> lhsPartOf; lhsPartOf = (leftObject.isSetPartOf()?leftObject.getPartOf():null); List<DSAggregatePropertyType> rhsPartOf; rhsPartOf = (rightObject.isSetPartOf()?rightObject.getPartOf():null); List<DSAggregatePropertyType> mergedPartOf = ((List<DSAggregatePropertyType> ) strategy.merge(LocatorUtils.property(leftLocator, "partOf", lhsPartOf), LocatorUtils.property(rightLocator, "partOf", rhsPartOf), lhsPartOf, rhsPartOf, leftObject.isSetPartOf(), rightObject.isSetPartOf())); target.unsetPartOf(); if (mergedPartOf!= null) { List<DSAggregatePropertyType> uniquePartOfl = target.getPartOf(); uniquePartOfl.addAll(mergedPartOf); } } else { if (partOfShouldBeMergedAndSet == Boolean.FALSE) { target.unsetPartOf(); } } } } } public void setHas(List<MDMetadataPropertyType> value) { this.has = null; if (value!= null) { List<MDMetadataPropertyType> draftl = this.getHas(); draftl.addAll(value); } } public void setPartOf(List<DSAggregatePropertyType> value) { this.partOf = null; if (value!= null) { List<DSAggregatePropertyType> draftl = this.getPartOf(); draftl.addAll(value); } } }