// // 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.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; 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; /** * Information describing metadata extensions. * * <p>Java class for MD_MetadataExtensionInformation_Type complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="MD_MetadataExtensionInformation_Type"> * <complexContent> * <extension base="{http://www.isotc211.org/2005/gco}AbstractObject_Type"> * <sequence> * <element name="extensionOnLineResource" type="{http://www.isotc211.org/2005/gmd}CI_OnlineResource_PropertyType" minOccurs="0"/> * <element name="extendedElementInformation" type="{http://www.isotc211.org/2005/gmd}MD_ExtendedElementInformation_PropertyType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MD_MetadataExtensionInformation_Type", propOrder = { "extensionOnLineResource", "extendedElementInformation" }) public class MDMetadataExtensionInformationType extends AbstractObjectType implements Serializable, Cloneable, CopyTo2, Equals2, HashCode2, MergeFrom2, ToString2 { private final static long serialVersionUID = 1L; @Valid protected CIOnlineResourcePropertyType extensionOnLineResource; @Valid protected List<MDExtendedElementInformationPropertyType> extendedElementInformation; /** * Gets the value of the extensionOnLineResource property. * * @return * possible object is * {@link CIOnlineResourcePropertyType } * */ public CIOnlineResourcePropertyType getExtensionOnLineResource() { return extensionOnLineResource; } /** * Sets the value of the extensionOnLineResource property. * * @param value * allowed object is * {@link CIOnlineResourcePropertyType } * */ public void setExtensionOnLineResource(CIOnlineResourcePropertyType value) { this.extensionOnLineResource = value; } public boolean isSetExtensionOnLineResource() { return (this.extensionOnLineResource!= null); } /** * Gets the value of the extendedElementInformation 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 extendedElementInformation property. * * <p> * For example, to add a new item, do as follows: * <pre> * getExtendedElementInformation().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link MDExtendedElementInformationPropertyType } * * */ public List<MDExtendedElementInformationPropertyType> getExtendedElementInformation() { if (extendedElementInformation == null) { extendedElementInformation = new ArrayList<MDExtendedElementInformationPropertyType>(); } return this.extendedElementInformation; } public boolean isSetExtendedElementInformation() { return ((this.extendedElementInformation!= null)&&(!this.extendedElementInformation.isEmpty())); } public void unsetExtendedElementInformation() { this.extendedElementInformation = 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); { CIOnlineResourcePropertyType theExtensionOnLineResource; theExtensionOnLineResource = this.getExtensionOnLineResource(); strategy.appendField(locator, this, "extensionOnLineResource", buffer, theExtensionOnLineResource, this.isSetExtensionOnLineResource()); } { List<MDExtendedElementInformationPropertyType> theExtendedElementInformation; theExtendedElementInformation = (this.isSetExtendedElementInformation()?this.getExtendedElementInformation():null); strategy.appendField(locator, this, "extendedElementInformation", buffer, theExtendedElementInformation, this.isSetExtendedElementInformation()); } 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 MDMetadataExtensionInformationType that = ((MDMetadataExtensionInformationType) object); { CIOnlineResourcePropertyType lhsExtensionOnLineResource; lhsExtensionOnLineResource = this.getExtensionOnLineResource(); CIOnlineResourcePropertyType rhsExtensionOnLineResource; rhsExtensionOnLineResource = that.getExtensionOnLineResource(); if (!strategy.equals(LocatorUtils.property(thisLocator, "extensionOnLineResource", lhsExtensionOnLineResource), LocatorUtils.property(thatLocator, "extensionOnLineResource", rhsExtensionOnLineResource), lhsExtensionOnLineResource, rhsExtensionOnLineResource, this.isSetExtensionOnLineResource(), that.isSetExtensionOnLineResource())) { return false; } } { List<MDExtendedElementInformationPropertyType> lhsExtendedElementInformation; lhsExtendedElementInformation = (this.isSetExtendedElementInformation()?this.getExtendedElementInformation():null); List<MDExtendedElementInformationPropertyType> rhsExtendedElementInformation; rhsExtendedElementInformation = (that.isSetExtendedElementInformation()?that.getExtendedElementInformation():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "extendedElementInformation", lhsExtendedElementInformation), LocatorUtils.property(thatLocator, "extendedElementInformation", rhsExtendedElementInformation), lhsExtendedElementInformation, rhsExtendedElementInformation, this.isSetExtendedElementInformation(), that.isSetExtendedElementInformation())) { 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); { CIOnlineResourcePropertyType theExtensionOnLineResource; theExtensionOnLineResource = this.getExtensionOnLineResource(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "extensionOnLineResource", theExtensionOnLineResource), currentHashCode, theExtensionOnLineResource, this.isSetExtensionOnLineResource()); } { List<MDExtendedElementInformationPropertyType> theExtendedElementInformation; theExtendedElementInformation = (this.isSetExtendedElementInformation()?this.getExtendedElementInformation():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "extendedElementInformation", theExtendedElementInformation), currentHashCode, theExtendedElementInformation, this.isSetExtendedElementInformation()); } 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 MDMetadataExtensionInformationType) { final MDMetadataExtensionInformationType copy = ((MDMetadataExtensionInformationType) draftCopy); { Boolean extensionOnLineResourceShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetExtensionOnLineResource()); if (extensionOnLineResourceShouldBeCopiedAndSet == Boolean.TRUE) { CIOnlineResourcePropertyType sourceExtensionOnLineResource; sourceExtensionOnLineResource = this.getExtensionOnLineResource(); CIOnlineResourcePropertyType copyExtensionOnLineResource = ((CIOnlineResourcePropertyType) strategy.copy(LocatorUtils.property(locator, "extensionOnLineResource", sourceExtensionOnLineResource), sourceExtensionOnLineResource, this.isSetExtensionOnLineResource())); copy.setExtensionOnLineResource(copyExtensionOnLineResource); } else { if (extensionOnLineResourceShouldBeCopiedAndSet == Boolean.FALSE) { copy.extensionOnLineResource = null; } } } { Boolean extendedElementInformationShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetExtendedElementInformation()); if (extendedElementInformationShouldBeCopiedAndSet == Boolean.TRUE) { List<MDExtendedElementInformationPropertyType> sourceExtendedElementInformation; sourceExtendedElementInformation = (this.isSetExtendedElementInformation()?this.getExtendedElementInformation():null); @SuppressWarnings("unchecked") List<MDExtendedElementInformationPropertyType> copyExtendedElementInformation = ((List<MDExtendedElementInformationPropertyType> ) strategy.copy(LocatorUtils.property(locator, "extendedElementInformation", sourceExtendedElementInformation), sourceExtendedElementInformation, this.isSetExtendedElementInformation())); copy.unsetExtendedElementInformation(); if (copyExtendedElementInformation!= null) { List<MDExtendedElementInformationPropertyType> uniqueExtendedElementInformationl = copy.getExtendedElementInformation(); uniqueExtendedElementInformationl.addAll(copyExtendedElementInformation); } } else { if (extendedElementInformationShouldBeCopiedAndSet == Boolean.FALSE) { copy.unsetExtendedElementInformation(); } } } } return draftCopy; } public Object createNewInstance() { return new MDMetadataExtensionInformationType(); } 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 MDMetadataExtensionInformationType) { final MDMetadataExtensionInformationType target = this; final MDMetadataExtensionInformationType leftObject = ((MDMetadataExtensionInformationType) left); final MDMetadataExtensionInformationType rightObject = ((MDMetadataExtensionInformationType) right); { Boolean extensionOnLineResourceShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetExtensionOnLineResource(), rightObject.isSetExtensionOnLineResource()); if (extensionOnLineResourceShouldBeMergedAndSet == Boolean.TRUE) { CIOnlineResourcePropertyType lhsExtensionOnLineResource; lhsExtensionOnLineResource = leftObject.getExtensionOnLineResource(); CIOnlineResourcePropertyType rhsExtensionOnLineResource; rhsExtensionOnLineResource = rightObject.getExtensionOnLineResource(); CIOnlineResourcePropertyType mergedExtensionOnLineResource = ((CIOnlineResourcePropertyType) strategy.merge(LocatorUtils.property(leftLocator, "extensionOnLineResource", lhsExtensionOnLineResource), LocatorUtils.property(rightLocator, "extensionOnLineResource", rhsExtensionOnLineResource), lhsExtensionOnLineResource, rhsExtensionOnLineResource, leftObject.isSetExtensionOnLineResource(), rightObject.isSetExtensionOnLineResource())); target.setExtensionOnLineResource(mergedExtensionOnLineResource); } else { if (extensionOnLineResourceShouldBeMergedAndSet == Boolean.FALSE) { target.extensionOnLineResource = null; } } } { Boolean extendedElementInformationShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetExtendedElementInformation(), rightObject.isSetExtendedElementInformation()); if (extendedElementInformationShouldBeMergedAndSet == Boolean.TRUE) { List<MDExtendedElementInformationPropertyType> lhsExtendedElementInformation; lhsExtendedElementInformation = (leftObject.isSetExtendedElementInformation()?leftObject.getExtendedElementInformation():null); List<MDExtendedElementInformationPropertyType> rhsExtendedElementInformation; rhsExtendedElementInformation = (rightObject.isSetExtendedElementInformation()?rightObject.getExtendedElementInformation():null); List<MDExtendedElementInformationPropertyType> mergedExtendedElementInformation = ((List<MDExtendedElementInformationPropertyType> ) strategy.merge(LocatorUtils.property(leftLocator, "extendedElementInformation", lhsExtendedElementInformation), LocatorUtils.property(rightLocator, "extendedElementInformation", rhsExtendedElementInformation), lhsExtendedElementInformation, rhsExtendedElementInformation, leftObject.isSetExtendedElementInformation(), rightObject.isSetExtendedElementInformation())); target.unsetExtendedElementInformation(); if (mergedExtendedElementInformation!= null) { List<MDExtendedElementInformationPropertyType> uniqueExtendedElementInformationl = target.getExtendedElementInformation(); uniqueExtendedElementInformationl.addAll(mergedExtendedElementInformation); } } else { if (extendedElementInformationShouldBeMergedAndSet == Boolean.FALSE) { target.unsetExtendedElementInformation(); } } } } } public void setExtendedElementInformation(List<MDExtendedElementInformationPropertyType> value) { this.extendedElementInformation = null; if (value!= null) { List<MDExtendedElementInformationPropertyType> draftl = this.getExtendedElementInformation(); draftl.addAll(value); } } }