// // 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 javax.validation.Valid; import javax.validation.constraints.NotNull; 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.isotc211._2005.gco.DatePropertyType; 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; /** * <p>Java class for CI_Date_Type complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CI_Date_Type"> * <complexContent> * <extension base="{http://www.isotc211.org/2005/gco}AbstractObject_Type"> * <sequence> * <element name="date" type="{http://www.isotc211.org/2005/gco}Date_PropertyType"/> * <element name="dateType" type="{http://www.isotc211.org/2005/gmd}CI_DateTypeCode_PropertyType"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CI_Date_Type", propOrder = { "date", "dateType" }) public class CIDateType extends AbstractObjectType implements Serializable, Cloneable, CopyTo2, Equals2, HashCode2, MergeFrom2, ToString2 { private final static long serialVersionUID = 1L; @XmlElement(required = true) @NotNull(message = "CIDateType.date {javax.validation.constraints.NotNull.message}") @Valid protected DatePropertyType date; @XmlElement(required = true) @NotNull(message = "CIDateType.dateType {javax.validation.constraints.NotNull.message}") @Valid protected CIDateTypeCodePropertyType dateType; /** * Gets the value of the date property. * * @return * possible object is * {@link DatePropertyType } * */ public DatePropertyType getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link DatePropertyType } * */ public void setDate(DatePropertyType value) { this.date = value; } public boolean isSetDate() { return (this.date!= null); } /** * Gets the value of the dateType property. * * @return * possible object is * {@link CIDateTypeCodePropertyType } * */ public CIDateTypeCodePropertyType getDateType() { return dateType; } /** * Sets the value of the dateType property. * * @param value * allowed object is * {@link CIDateTypeCodePropertyType } * */ public void setDateType(CIDateTypeCodePropertyType value) { this.dateType = value; } public boolean isSetDateType() { return (this.dateType!= 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); { DatePropertyType theDate; theDate = this.getDate(); strategy.appendField(locator, this, "date", buffer, theDate, this.isSetDate()); } { CIDateTypeCodePropertyType theDateType; theDateType = this.getDateType(); strategy.appendField(locator, this, "dateType", buffer, theDateType, this.isSetDateType()); } 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 CIDateType that = ((CIDateType) object); { DatePropertyType lhsDate; lhsDate = this.getDate(); DatePropertyType rhsDate; rhsDate = that.getDate(); if (!strategy.equals(LocatorUtils.property(thisLocator, "date", lhsDate), LocatorUtils.property(thatLocator, "date", rhsDate), lhsDate, rhsDate, this.isSetDate(), that.isSetDate())) { return false; } } { CIDateTypeCodePropertyType lhsDateType; lhsDateType = this.getDateType(); CIDateTypeCodePropertyType rhsDateType; rhsDateType = that.getDateType(); if (!strategy.equals(LocatorUtils.property(thisLocator, "dateType", lhsDateType), LocatorUtils.property(thatLocator, "dateType", rhsDateType), lhsDateType, rhsDateType, this.isSetDateType(), that.isSetDateType())) { 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); { DatePropertyType theDate; theDate = this.getDate(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "date", theDate), currentHashCode, theDate, this.isSetDate()); } { CIDateTypeCodePropertyType theDateType; theDateType = this.getDateType(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "dateType", theDateType), currentHashCode, theDateType, this.isSetDateType()); } 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 CIDateType) { final CIDateType copy = ((CIDateType) draftCopy); { Boolean dateShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetDate()); if (dateShouldBeCopiedAndSet == Boolean.TRUE) { DatePropertyType sourceDate; sourceDate = this.getDate(); DatePropertyType copyDate = ((DatePropertyType) strategy.copy(LocatorUtils.property(locator, "date", sourceDate), sourceDate, this.isSetDate())); copy.setDate(copyDate); } else { if (dateShouldBeCopiedAndSet == Boolean.FALSE) { copy.date = null; } } } { Boolean dateTypeShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetDateType()); if (dateTypeShouldBeCopiedAndSet == Boolean.TRUE) { CIDateTypeCodePropertyType sourceDateType; sourceDateType = this.getDateType(); CIDateTypeCodePropertyType copyDateType = ((CIDateTypeCodePropertyType) strategy.copy(LocatorUtils.property(locator, "dateType", sourceDateType), sourceDateType, this.isSetDateType())); copy.setDateType(copyDateType); } else { if (dateTypeShouldBeCopiedAndSet == Boolean.FALSE) { copy.dateType = null; } } } } return draftCopy; } public Object createNewInstance() { return new CIDateType(); } 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 CIDateType) { final CIDateType target = this; final CIDateType leftObject = ((CIDateType) left); final CIDateType rightObject = ((CIDateType) right); { Boolean dateShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetDate(), rightObject.isSetDate()); if (dateShouldBeMergedAndSet == Boolean.TRUE) { DatePropertyType lhsDate; lhsDate = leftObject.getDate(); DatePropertyType rhsDate; rhsDate = rightObject.getDate(); DatePropertyType mergedDate = ((DatePropertyType) strategy.merge(LocatorUtils.property(leftLocator, "date", lhsDate), LocatorUtils.property(rightLocator, "date", rhsDate), lhsDate, rhsDate, leftObject.isSetDate(), rightObject.isSetDate())); target.setDate(mergedDate); } else { if (dateShouldBeMergedAndSet == Boolean.FALSE) { target.date = null; } } } { Boolean dateTypeShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetDateType(), rightObject.isSetDateType()); if (dateTypeShouldBeMergedAndSet == Boolean.TRUE) { CIDateTypeCodePropertyType lhsDateType; lhsDateType = leftObject.getDateType(); CIDateTypeCodePropertyType rhsDateType; rhsDateType = rightObject.getDateType(); CIDateTypeCodePropertyType mergedDateType = ((CIDateTypeCodePropertyType) strategy.merge(LocatorUtils.property(leftLocator, "dateType", lhsDateType), LocatorUtils.property(rightLocator, "dateType", rhsDateType), lhsDateType, rhsDateType, leftObject.isSetDateType(), rightObject.isSetDateType())); target.setDateType(mergedDateType); } else { if (dateTypeShouldBeMergedAndSet == Boolean.FALSE) { target.dateType = null; } } } } } }