All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.opengis.tjs.v_1_0.Uncertainty Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.26 at 05:07:06 PM AST 
//


package net.opengis.tjs.v_1_0;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
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;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *       <attribute name="gaussian" use="required">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <enumeration value="true"/>
 *             <enumeration value="false"/>
 *             <enumeration value="unknown"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) @XmlRootElement(name = "Uncertainty") public class Uncertainty implements Cloneable, CopyTo2, Equals2, HashCode2, MergeFrom2, ToString2 { @XmlValue protected String value; @XmlAttribute(name = "gaussian", required = true) protected String gaussian; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } public boolean isSetValue() { return (this.value!= null); } /** * Gets the value of the gaussian property. * * @return * possible object is * {@link String } * */ public String getGaussian() { return gaussian; } /** * Sets the value of the gaussian property. * * @param value * allowed object is * {@link String } * */ public void setGaussian(String value) { this.gaussian = value; } public boolean isSetGaussian() { return (this.gaussian!= 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) { { String theValue; theValue = this.getValue(); strategy.appendField(locator, this, "value", buffer, theValue, this.isSetValue()); } { String theGaussian; theGaussian = this.getGaussian(); strategy.appendField(locator, this, "gaussian", buffer, theGaussian, this.isSetGaussian()); } 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 Uncertainty that = ((Uncertainty) object); { String lhsValue; lhsValue = this.getValue(); String rhsValue; rhsValue = that.getValue(); if (!strategy.equals(LocatorUtils.property(thisLocator, "value", lhsValue), LocatorUtils.property(thatLocator, "value", rhsValue), lhsValue, rhsValue, this.isSetValue(), that.isSetValue())) { return false; } } { String lhsGaussian; lhsGaussian = this.getGaussian(); String rhsGaussian; rhsGaussian = that.getGaussian(); if (!strategy.equals(LocatorUtils.property(thisLocator, "gaussian", lhsGaussian), LocatorUtils.property(thatLocator, "gaussian", rhsGaussian), lhsGaussian, rhsGaussian, this.isSetGaussian(), that.isSetGaussian())) { 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; { String theValue; theValue = this.getValue(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "value", theValue), currentHashCode, theValue, this.isSetValue()); } { String theGaussian; theGaussian = this.getGaussian(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "gaussian", theGaussian), currentHashCode, theGaussian, this.isSetGaussian()); } 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 Uncertainty) { final Uncertainty copy = ((Uncertainty) draftCopy); { Boolean valueShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetValue()); if (valueShouldBeCopiedAndSet == Boolean.TRUE) { String sourceValue; sourceValue = this.getValue(); String copyValue = ((String) strategy.copy(LocatorUtils.property(locator, "value", sourceValue), sourceValue, this.isSetValue())); copy.setValue(copyValue); } else { if (valueShouldBeCopiedAndSet == Boolean.FALSE) { copy.value = null; } } } { Boolean gaussianShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetGaussian()); if (gaussianShouldBeCopiedAndSet == Boolean.TRUE) { String sourceGaussian; sourceGaussian = this.getGaussian(); String copyGaussian = ((String) strategy.copy(LocatorUtils.property(locator, "gaussian", sourceGaussian), sourceGaussian, this.isSetGaussian())); copy.setGaussian(copyGaussian); } else { if (gaussianShouldBeCopiedAndSet == Boolean.FALSE) { copy.gaussian = null; } } } } return draftCopy; } public Object createNewInstance() { return new Uncertainty(); } 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 Uncertainty) { final Uncertainty target = this; final Uncertainty leftObject = ((Uncertainty) left); final Uncertainty rightObject = ((Uncertainty) right); { Boolean valueShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetValue(), rightObject.isSetValue()); if (valueShouldBeMergedAndSet == Boolean.TRUE) { String lhsValue; lhsValue = leftObject.getValue(); String rhsValue; rhsValue = rightObject.getValue(); String mergedValue = ((String) strategy.merge(LocatorUtils.property(leftLocator, "value", lhsValue), LocatorUtils.property(rightLocator, "value", rhsValue), lhsValue, rhsValue, leftObject.isSetValue(), rightObject.isSetValue())); target.setValue(mergedValue); } else { if (valueShouldBeMergedAndSet == Boolean.FALSE) { target.value = null; } } } { Boolean gaussianShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetGaussian(), rightObject.isSetGaussian()); if (gaussianShouldBeMergedAndSet == Boolean.TRUE) { String lhsGaussian; lhsGaussian = leftObject.getGaussian(); String rhsGaussian; rhsGaussian = rightObject.getGaussian(); String mergedGaussian = ((String) strategy.merge(LocatorUtils.property(leftLocator, "gaussian", lhsGaussian), LocatorUtils.property(rightLocator, "gaussian", rhsGaussian), lhsGaussian, rhsGaussian, leftObject.isSetGaussian(), rightObject.isSetGaussian())); target.setGaussian(mergedGaussian); } else { if (gaussianShouldBeMergedAndSet == Boolean.FALSE) { target.gaussian = null; } } } } } public Uncertainty withValue(String value) { setValue(value); return this; } public Uncertainty withGaussian(String value) { setGaussian(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy