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

un.unece.uncefact.data.specification.corecomponenttypeschemamodule._2.QuantityType Maven / Gradle / Ivy

//
// 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.07.19 at 05:08:29 PM CEST 
//


package un.unece.uncefact.data.specification.corecomponenttypeschemamodule._2;

import java.io.Serializable;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.HashCode;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.ToString;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;


/**
 * 
 * 
 * <?xml version="1.0" encoding="UTF-8"?><ccts:UniqueID xmlns:ccts="urn:un:unece:uncefact:documentation:2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">UNDT000018</ccts:UniqueID>
 * 
* *
 * <?xml version="1.0" encoding="UTF-8"?><ccts:CategoryCode xmlns:ccts="urn:un:unece:uncefact:documentation:2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">CCT</ccts:CategoryCode>
 * 
* *
 * <?xml version="1.0" encoding="UTF-8"?><ccts:DictionaryEntryName xmlns:ccts="urn:un:unece:uncefact:documentation:2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">Quantity. Type</ccts:DictionaryEntryName>
 * 
* *
 * <?xml version="1.0" encoding="UTF-8"?><ccts:VersionID xmlns:ccts="urn:un:unece:uncefact:documentation:2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">1.0</ccts:VersionID>
 * 
* *
 * <?xml version="1.0" encoding="UTF-8"?><ccts:Definition xmlns:ccts="urn:un:unece:uncefact:documentation:2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">A counted number of non-monetary units possibly including fractions.</ccts:Definition>
 * 
* *
 * <?xml version="1.0" encoding="UTF-8"?><ccts:RepresentationTermName xmlns:ccts="urn:un:unece:uncefact:documentation:2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">Quantity</ccts:RepresentationTermName>
 * 
* *
 * <?xml version="1.0" encoding="UTF-8"?><ccts:PrimitiveType xmlns:ccts="urn:un:unece:uncefact:documentation:2" xmlns:xsd="http://www.w3.org/2001/XMLSchema">decimal</ccts:PrimitiveType>
 * 
* * *

Java class for QuantityType complex type. * *

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

 * <complexType name="QuantityType">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>decimal">
 *       <attribute name="unitCode" type="{http://www.w3.org/2001/XMLSchema}normalizedString" />
 *       <attribute name="unitCodeListID" type="{http://www.w3.org/2001/XMLSchema}normalizedString" />
 *       <attribute name="unitCodeListAgencyID" type="{http://www.w3.org/2001/XMLSchema}normalizedString" />
 *       <attribute name="unitCodeListAgencyName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "QuantityType", propOrder = { "value" }) @XmlSeeAlso({ oasis.names.specification.ubl.schema.xsd.unqualifieddatatypes_2.QuantityType.class }) public class QuantityType implements Serializable, Equals, HashCode, ToString { private final static long serialVersionUID = 100L; @XmlValue protected BigDecimal value; @XmlAttribute(name = "unitCode") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) @XmlSchemaType(name = "normalizedString") protected String unitCode; @XmlAttribute(name = "unitCodeListID") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) @XmlSchemaType(name = "normalizedString") protected String unitCodeListID; @XmlAttribute(name = "unitCodeListAgencyID") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) @XmlSchemaType(name = "normalizedString") protected String unitCodeListAgencyID; @XmlAttribute(name = "unitCodeListAgencyName") protected String unitCodeListAgencyName; /** * Gets the value of the value property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setValue(BigDecimal value) { this.value = value; } /** * Gets the value of the unitCode property. * * @return * possible object is * {@link String } * */ public String getUnitCode() { return unitCode; } /** * Sets the value of the unitCode property. * * @param value * allowed object is * {@link String } * */ public void setUnitCode(String value) { this.unitCode = value; } /** * Gets the value of the unitCodeListID property. * * @return * possible object is * {@link String } * */ public String getUnitCodeListID() { return unitCodeListID; } /** * Sets the value of the unitCodeListID property. * * @param value * allowed object is * {@link String } * */ public void setUnitCodeListID(String value) { this.unitCodeListID = value; } /** * Gets the value of the unitCodeListAgencyID property. * * @return * possible object is * {@link String } * */ public String getUnitCodeListAgencyID() { return unitCodeListAgencyID; } /** * Sets the value of the unitCodeListAgencyID property. * * @param value * allowed object is * {@link String } * */ public void setUnitCodeListAgencyID(String value) { this.unitCodeListAgencyID = value; } /** * Gets the value of the unitCodeListAgencyName property. * * @return * possible object is * {@link String } * */ public String getUnitCodeListAgencyName() { return unitCodeListAgencyName; } /** * Sets the value of the unitCodeListAgencyName property. * * @param value * allowed object is * {@link String } * */ public void setUnitCodeListAgencyName(String value) { this.unitCodeListAgencyName = value; } public String toString() { final ToStringStrategy strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy strategy) { { BigDecimal theValue; theValue = this.getValue(); strategy.appendField(locator, this, "value", buffer, theValue); } { String theUnitCode; theUnitCode = this.getUnitCode(); strategy.appendField(locator, this, "unitCode", buffer, theUnitCode); } { String theUnitCodeListID; theUnitCodeListID = this.getUnitCodeListID(); strategy.appendField(locator, this, "unitCodeListID", buffer, theUnitCodeListID); } { String theUnitCodeListAgencyID; theUnitCodeListAgencyID = this.getUnitCodeListAgencyID(); strategy.appendField(locator, this, "unitCodeListAgencyID", buffer, theUnitCodeListAgencyID); } { String theUnitCodeListAgencyName; theUnitCodeListAgencyName = this.getUnitCodeListAgencyName(); strategy.appendField(locator, this, "unitCodeListAgencyName", buffer, theUnitCodeListAgencyName); } return buffer; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy strategy) { if (!(object instanceof QuantityType)) { return false; } if (this == object) { return true; } final QuantityType that = ((QuantityType) object); { BigDecimal lhsValue; lhsValue = this.getValue(); BigDecimal rhsValue; rhsValue = that.getValue(); if (!strategy.equals(LocatorUtils.property(thisLocator, "value", lhsValue), LocatorUtils.property(thatLocator, "value", rhsValue), lhsValue, rhsValue)) { return false; } } { String lhsUnitCode; lhsUnitCode = this.getUnitCode(); String rhsUnitCode; rhsUnitCode = that.getUnitCode(); if (!strategy.equals(LocatorUtils.property(thisLocator, "unitCode", lhsUnitCode), LocatorUtils.property(thatLocator, "unitCode", rhsUnitCode), lhsUnitCode, rhsUnitCode)) { return false; } } { String lhsUnitCodeListID; lhsUnitCodeListID = this.getUnitCodeListID(); String rhsUnitCodeListID; rhsUnitCodeListID = that.getUnitCodeListID(); if (!strategy.equals(LocatorUtils.property(thisLocator, "unitCodeListID", lhsUnitCodeListID), LocatorUtils.property(thatLocator, "unitCodeListID", rhsUnitCodeListID), lhsUnitCodeListID, rhsUnitCodeListID)) { return false; } } { String lhsUnitCodeListAgencyID; lhsUnitCodeListAgencyID = this.getUnitCodeListAgencyID(); String rhsUnitCodeListAgencyID; rhsUnitCodeListAgencyID = that.getUnitCodeListAgencyID(); if (!strategy.equals(LocatorUtils.property(thisLocator, "unitCodeListAgencyID", lhsUnitCodeListAgencyID), LocatorUtils.property(thatLocator, "unitCodeListAgencyID", rhsUnitCodeListAgencyID), lhsUnitCodeListAgencyID, rhsUnitCodeListAgencyID)) { return false; } } { String lhsUnitCodeListAgencyName; lhsUnitCodeListAgencyName = this.getUnitCodeListAgencyName(); String rhsUnitCodeListAgencyName; rhsUnitCodeListAgencyName = that.getUnitCodeListAgencyName(); if (!strategy.equals(LocatorUtils.property(thisLocator, "unitCodeListAgencyName", lhsUnitCodeListAgencyName), LocatorUtils.property(thatLocator, "unitCodeListAgencyName", rhsUnitCodeListAgencyName), lhsUnitCodeListAgencyName, rhsUnitCodeListAgencyName)) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy strategy) { int currentHashCode = 1; { BigDecimal theValue; theValue = this.getValue(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "value", theValue), currentHashCode, theValue); } { String theUnitCode; theUnitCode = this.getUnitCode(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "unitCode", theUnitCode), currentHashCode, theUnitCode); } { String theUnitCodeListID; theUnitCodeListID = this.getUnitCodeListID(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "unitCodeListID", theUnitCodeListID), currentHashCode, theUnitCodeListID); } { String theUnitCodeListAgencyID; theUnitCodeListAgencyID = this.getUnitCodeListAgencyID(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "unitCodeListAgencyID", theUnitCodeListAgencyID), currentHashCode, theUnitCodeListAgencyID); } { String theUnitCodeListAgencyName; theUnitCodeListAgencyName = this.getUnitCodeListAgencyName(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "unitCodeListAgencyName", theUnitCodeListAgencyName), currentHashCode, theUnitCodeListAgencyName); } return currentHashCode; } public int hashCode() { final HashCodeStrategy strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy