// // 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.gco; 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.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import net.opengis.gml.v_3_2_1.AngleType; 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 Angle_PropertyType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Angle_PropertyType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence minOccurs="0"> * <element ref="{http://www.isotc211.org/2005/gco}Angle"/> * </sequence> * <attribute ref="{http://www.isotc211.org/2005/gco}nilReason"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Angle_PropertyType", propOrder = { "angle" }) public class AnglePropertyType implements Serializable, Cloneable, CopyTo2, Equals2, HashCode2, MergeFrom2, ToString2 { private final static long serialVersionUID = 1L; @XmlElement(name = "Angle") @Valid protected AngleType angle; @XmlAttribute(name = "nilReason", namespace = "http://www.isotc211.org/2005/gco") protected List<String> nilReason; /** * Gets the value of the angle property. * * @return * possible object is * {@link AngleType } * */ public AngleType getAngle() { return angle; } /** * Sets the value of the angle property. * * @param value * allowed object is * {@link AngleType } * */ public void setAngle(AngleType value) { this.angle = value; } public boolean isSetAngle() { return (this.angle!= null); } /** * Gets the value of the nilReason 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 nilReason property. * * <p> * For example, to add a new item, do as follows: * <pre> * getNilReason().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getNilReason() { if (nilReason == null) { nilReason = new ArrayList<String>(); } return this.nilReason; } public boolean isSetNilReason() { return ((this.nilReason!= null)&&(!this.nilReason.isEmpty())); } public void unsetNilReason() { this.nilReason = 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) { { AngleType theAngle; theAngle = this.getAngle(); strategy.appendField(locator, this, "angle", buffer, theAngle, this.isSetAngle()); } { List<String> theNilReason; theNilReason = (this.isSetNilReason()?this.getNilReason():null); strategy.appendField(locator, this, "nilReason", buffer, theNilReason, this.isSetNilReason()); } 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; } final AnglePropertyType that = ((AnglePropertyType) object); { AngleType lhsAngle; lhsAngle = this.getAngle(); AngleType rhsAngle; rhsAngle = that.getAngle(); if (!strategy.equals(LocatorUtils.property(thisLocator, "angle", lhsAngle), LocatorUtils.property(thatLocator, "angle", rhsAngle), lhsAngle, rhsAngle, this.isSetAngle(), that.isSetAngle())) { return false; } } { List<String> lhsNilReason; lhsNilReason = (this.isSetNilReason()?this.getNilReason():null); List<String> rhsNilReason; rhsNilReason = (that.isSetNilReason()?that.getNilReason():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "nilReason", lhsNilReason), LocatorUtils.property(thatLocator, "nilReason", rhsNilReason), lhsNilReason, rhsNilReason, this.isSetNilReason(), that.isSetNilReason())) { 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 = 1; { AngleType theAngle; theAngle = this.getAngle(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "angle", theAngle), currentHashCode, theAngle, this.isSetAngle()); } { List<String> theNilReason; theNilReason = (this.isSetNilReason()?this.getNilReason():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "nilReason", theNilReason), currentHashCode, theNilReason, this.isSetNilReason()); } 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); if (draftCopy instanceof AnglePropertyType) { final AnglePropertyType copy = ((AnglePropertyType) draftCopy); { Boolean angleShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetAngle()); if (angleShouldBeCopiedAndSet == Boolean.TRUE) { AngleType sourceAngle; sourceAngle = this.getAngle(); AngleType copyAngle = ((AngleType) strategy.copy(LocatorUtils.property(locator, "angle", sourceAngle), sourceAngle, this.isSetAngle())); copy.setAngle(copyAngle); } else { if (angleShouldBeCopiedAndSet == Boolean.FALSE) { copy.angle = null; } } } { Boolean nilReasonShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetNilReason()); if (nilReasonShouldBeCopiedAndSet == Boolean.TRUE) { List<String> sourceNilReason; sourceNilReason = (this.isSetNilReason()?this.getNilReason():null); @SuppressWarnings("unchecked") List<String> copyNilReason = ((List<String> ) strategy.copy(LocatorUtils.property(locator, "nilReason", sourceNilReason), sourceNilReason, this.isSetNilReason())); copy.unsetNilReason(); if (copyNilReason!= null) { List<String> uniqueNilReasonl = copy.getNilReason(); uniqueNilReasonl.addAll(copyNilReason); } } else { if (nilReasonShouldBeCopiedAndSet == Boolean.FALSE) { copy.unsetNilReason(); } } } } return draftCopy; } public Object createNewInstance() { return new AnglePropertyType(); } 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) { if (right instanceof AnglePropertyType) { final AnglePropertyType target = this; final AnglePropertyType leftObject = ((AnglePropertyType) left); final AnglePropertyType rightObject = ((AnglePropertyType) right); { Boolean angleShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetAngle(), rightObject.isSetAngle()); if (angleShouldBeMergedAndSet == Boolean.TRUE) { AngleType lhsAngle; lhsAngle = leftObject.getAngle(); AngleType rhsAngle; rhsAngle = rightObject.getAngle(); AngleType mergedAngle = ((AngleType) strategy.merge(LocatorUtils.property(leftLocator, "angle", lhsAngle), LocatorUtils.property(rightLocator, "angle", rhsAngle), lhsAngle, rhsAngle, leftObject.isSetAngle(), rightObject.isSetAngle())); target.setAngle(mergedAngle); } else { if (angleShouldBeMergedAndSet == Boolean.FALSE) { target.angle = null; } } } { Boolean nilReasonShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetNilReason(), rightObject.isSetNilReason()); if (nilReasonShouldBeMergedAndSet == Boolean.TRUE) { List<String> lhsNilReason; lhsNilReason = (leftObject.isSetNilReason()?leftObject.getNilReason():null); List<String> rhsNilReason; rhsNilReason = (rightObject.isSetNilReason()?rightObject.getNilReason():null); List<String> mergedNilReason = ((List<String> ) strategy.merge(LocatorUtils.property(leftLocator, "nilReason", lhsNilReason), LocatorUtils.property(rightLocator, "nilReason", rhsNilReason), lhsNilReason, rhsNilReason, leftObject.isSetNilReason(), rightObject.isSetNilReason())); target.unsetNilReason(); if (mergedNilReason!= null) { List<String> uniqueNilReasonl = target.getNilReason(); uniqueNilReasonl.addAll(mergedNilReason); } } else { if (nilReasonShouldBeMergedAndSet == Boolean.FALSE) { target.unsetNilReason(); } } } } } public void setNilReason(List<String> value) { this.nilReason = null; if (value!= null) { List<String> draftl = this.getNilReason(); draftl.addAll(value); } } }