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

oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.ItemInstanceType Maven / Gradle / Ivy

//
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.11 
// Visite http://java.sun.com/xml/jaxb 
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen. 
// Generado el: 2021.03.22 a las 07:02:09 PM CET 
//


package oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
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 oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.BestBeforeDateType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.ManufactureDateType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.ManufactureTimeType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.ProductTraceIDType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.RegistrationIDType;
import oasis.names.specification.ubl.schema.xsd.commonbasiccomponents_2.SerialIDType;
import oasis.names.specification.ubl.schema.xsd.commonextensioncomponents_2.UBLExtensionsType;
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.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
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;


/**
 * 

Clase Java para ItemInstanceType complex type. * *

El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *

 * <complexType name="ItemInstanceType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2}UBLExtensions" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ProductTraceID" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ManufactureDate" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ManufactureTime" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}BestBeforeDate" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}RegistrationID" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}SerialID" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}AdditionalItemProperty" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}LotIdentification" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ItemInstanceType", propOrder = { "ublExtensions", "productTraceID", "manufactureDate", "manufactureTime", "bestBeforeDate", "registrationID", "serialID", "additionalItemProperty", "lotIdentification" }) public class ItemInstanceType implements Serializable, Equals2, HashCode2, ToString2 { private final static long serialVersionUID = 100L; @XmlElement(name = "UBLExtensions", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2") protected UBLExtensionsType ublExtensions; @XmlElement(name = "ProductTraceID", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ProductTraceIDType productTraceID; @XmlElement(name = "ManufactureDate", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ManufactureDateType manufactureDate; @XmlElement(name = "ManufactureTime", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ManufactureTimeType manufactureTime; @XmlElement(name = "BestBeforeDate", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected BestBeforeDateType bestBeforeDate; @XmlElement(name = "RegistrationID", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected RegistrationIDType registrationID; @XmlElement(name = "SerialID", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected SerialIDType serialID; @XmlElement(name = "AdditionalItemProperty") protected List additionalItemProperty; @XmlElement(name = "LotIdentification") protected LotIdentificationType lotIdentification; /** * Obtiene el valor de la propiedad ublExtensions. * * @return * possible object is * {@link UBLExtensionsType } * */ public UBLExtensionsType getUBLExtensions() { return ublExtensions; } /** * Define el valor de la propiedad ublExtensions. * * @param value * allowed object is * {@link UBLExtensionsType } * */ public void setUBLExtensions(UBLExtensionsType value) { this.ublExtensions = value; } /** * Obtiene el valor de la propiedad productTraceID. * * @return * possible object is * {@link ProductTraceIDType } * */ public ProductTraceIDType getProductTraceID() { return productTraceID; } /** * Define el valor de la propiedad productTraceID. * * @param value * allowed object is * {@link ProductTraceIDType } * */ public void setProductTraceID(ProductTraceIDType value) { this.productTraceID = value; } /** * Obtiene el valor de la propiedad manufactureDate. * * @return * possible object is * {@link ManufactureDateType } * */ public ManufactureDateType getManufactureDate() { return manufactureDate; } /** * Define el valor de la propiedad manufactureDate. * * @param value * allowed object is * {@link ManufactureDateType } * */ public void setManufactureDate(ManufactureDateType value) { this.manufactureDate = value; } /** * Obtiene el valor de la propiedad manufactureTime. * * @return * possible object is * {@link ManufactureTimeType } * */ public ManufactureTimeType getManufactureTime() { return manufactureTime; } /** * Define el valor de la propiedad manufactureTime. * * @param value * allowed object is * {@link ManufactureTimeType } * */ public void setManufactureTime(ManufactureTimeType value) { this.manufactureTime = value; } /** * Obtiene el valor de la propiedad bestBeforeDate. * * @return * possible object is * {@link BestBeforeDateType } * */ public BestBeforeDateType getBestBeforeDate() { return bestBeforeDate; } /** * Define el valor de la propiedad bestBeforeDate. * * @param value * allowed object is * {@link BestBeforeDateType } * */ public void setBestBeforeDate(BestBeforeDateType value) { this.bestBeforeDate = value; } /** * Obtiene el valor de la propiedad registrationID. * * @return * possible object is * {@link RegistrationIDType } * */ public RegistrationIDType getRegistrationID() { return registrationID; } /** * Define el valor de la propiedad registrationID. * * @param value * allowed object is * {@link RegistrationIDType } * */ public void setRegistrationID(RegistrationIDType value) { this.registrationID = value; } /** * Obtiene el valor de la propiedad serialID. * * @return * possible object is * {@link SerialIDType } * */ public SerialIDType getSerialID() { return serialID; } /** * Define el valor de la propiedad serialID. * * @param value * allowed object is * {@link SerialIDType } * */ public void setSerialID(SerialIDType value) { this.serialID = value; } /** * Gets the value of the additionalItemProperty property. * *

* 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 set method for the additionalItemProperty property. * *

* For example, to add a new item, do as follows: *

     *    getAdditionalItemProperty().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ItemPropertyType } * * */ public List getAdditionalItemProperty() { if (additionalItemProperty == null) { additionalItemProperty = new ArrayList(); } return this.additionalItemProperty; } /** * Obtiene el valor de la propiedad lotIdentification. * * @return * possible object is * {@link LotIdentificationType } * */ public LotIdentificationType getLotIdentification() { return lotIdentification; } /** * Define el valor de la propiedad lotIdentification. * * @param value * allowed object is * {@link LotIdentificationType } * */ public void setLotIdentification(LotIdentificationType value) { this.lotIdentification = value; } 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) { { UBLExtensionsType theUBLExtensions; theUBLExtensions = this.getUBLExtensions(); strategy.appendField(locator, this, "ublExtensions", buffer, theUBLExtensions, (this.ublExtensions!= null)); } { ProductTraceIDType theProductTraceID; theProductTraceID = this.getProductTraceID(); strategy.appendField(locator, this, "productTraceID", buffer, theProductTraceID, (this.productTraceID!= null)); } { ManufactureDateType theManufactureDate; theManufactureDate = this.getManufactureDate(); strategy.appendField(locator, this, "manufactureDate", buffer, theManufactureDate, (this.manufactureDate!= null)); } { ManufactureTimeType theManufactureTime; theManufactureTime = this.getManufactureTime(); strategy.appendField(locator, this, "manufactureTime", buffer, theManufactureTime, (this.manufactureTime!= null)); } { BestBeforeDateType theBestBeforeDate; theBestBeforeDate = this.getBestBeforeDate(); strategy.appendField(locator, this, "bestBeforeDate", buffer, theBestBeforeDate, (this.bestBeforeDate!= null)); } { RegistrationIDType theRegistrationID; theRegistrationID = this.getRegistrationID(); strategy.appendField(locator, this, "registrationID", buffer, theRegistrationID, (this.registrationID!= null)); } { SerialIDType theSerialID; theSerialID = this.getSerialID(); strategy.appendField(locator, this, "serialID", buffer, theSerialID, (this.serialID!= null)); } { List theAdditionalItemProperty; theAdditionalItemProperty = (((this.additionalItemProperty!= null)&&(!this.additionalItemProperty.isEmpty()))?this.getAdditionalItemProperty():null); strategy.appendField(locator, this, "additionalItemProperty", buffer, theAdditionalItemProperty, ((this.additionalItemProperty!= null)&&(!this.additionalItemProperty.isEmpty()))); } { LotIdentificationType theLotIdentification; theLotIdentification = this.getLotIdentification(); strategy.appendField(locator, this, "lotIdentification", buffer, theLotIdentification, (this.lotIdentification!= null)); } 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 ItemInstanceType that = ((ItemInstanceType) object); { UBLExtensionsType lhsUBLExtensions; lhsUBLExtensions = this.getUBLExtensions(); UBLExtensionsType rhsUBLExtensions; rhsUBLExtensions = that.getUBLExtensions(); if (!strategy.equals(LocatorUtils.property(thisLocator, "ublExtensions", lhsUBLExtensions), LocatorUtils.property(thatLocator, "ublExtensions", rhsUBLExtensions), lhsUBLExtensions, rhsUBLExtensions, (this.ublExtensions!= null), (that.ublExtensions!= null))) { return false; } } { ProductTraceIDType lhsProductTraceID; lhsProductTraceID = this.getProductTraceID(); ProductTraceIDType rhsProductTraceID; rhsProductTraceID = that.getProductTraceID(); if (!strategy.equals(LocatorUtils.property(thisLocator, "productTraceID", lhsProductTraceID), LocatorUtils.property(thatLocator, "productTraceID", rhsProductTraceID), lhsProductTraceID, rhsProductTraceID, (this.productTraceID!= null), (that.productTraceID!= null))) { return false; } } { ManufactureDateType lhsManufactureDate; lhsManufactureDate = this.getManufactureDate(); ManufactureDateType rhsManufactureDate; rhsManufactureDate = that.getManufactureDate(); if (!strategy.equals(LocatorUtils.property(thisLocator, "manufactureDate", lhsManufactureDate), LocatorUtils.property(thatLocator, "manufactureDate", rhsManufactureDate), lhsManufactureDate, rhsManufactureDate, (this.manufactureDate!= null), (that.manufactureDate!= null))) { return false; } } { ManufactureTimeType lhsManufactureTime; lhsManufactureTime = this.getManufactureTime(); ManufactureTimeType rhsManufactureTime; rhsManufactureTime = that.getManufactureTime(); if (!strategy.equals(LocatorUtils.property(thisLocator, "manufactureTime", lhsManufactureTime), LocatorUtils.property(thatLocator, "manufactureTime", rhsManufactureTime), lhsManufactureTime, rhsManufactureTime, (this.manufactureTime!= null), (that.manufactureTime!= null))) { return false; } } { BestBeforeDateType lhsBestBeforeDate; lhsBestBeforeDate = this.getBestBeforeDate(); BestBeforeDateType rhsBestBeforeDate; rhsBestBeforeDate = that.getBestBeforeDate(); if (!strategy.equals(LocatorUtils.property(thisLocator, "bestBeforeDate", lhsBestBeforeDate), LocatorUtils.property(thatLocator, "bestBeforeDate", rhsBestBeforeDate), lhsBestBeforeDate, rhsBestBeforeDate, (this.bestBeforeDate!= null), (that.bestBeforeDate!= null))) { return false; } } { RegistrationIDType lhsRegistrationID; lhsRegistrationID = this.getRegistrationID(); RegistrationIDType rhsRegistrationID; rhsRegistrationID = that.getRegistrationID(); if (!strategy.equals(LocatorUtils.property(thisLocator, "registrationID", lhsRegistrationID), LocatorUtils.property(thatLocator, "registrationID", rhsRegistrationID), lhsRegistrationID, rhsRegistrationID, (this.registrationID!= null), (that.registrationID!= null))) { return false; } } { SerialIDType lhsSerialID; lhsSerialID = this.getSerialID(); SerialIDType rhsSerialID; rhsSerialID = that.getSerialID(); if (!strategy.equals(LocatorUtils.property(thisLocator, "serialID", lhsSerialID), LocatorUtils.property(thatLocator, "serialID", rhsSerialID), lhsSerialID, rhsSerialID, (this.serialID!= null), (that.serialID!= null))) { return false; } } { List lhsAdditionalItemProperty; lhsAdditionalItemProperty = (((this.additionalItemProperty!= null)&&(!this.additionalItemProperty.isEmpty()))?this.getAdditionalItemProperty():null); List rhsAdditionalItemProperty; rhsAdditionalItemProperty = (((that.additionalItemProperty!= null)&&(!that.additionalItemProperty.isEmpty()))?that.getAdditionalItemProperty():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "additionalItemProperty", lhsAdditionalItemProperty), LocatorUtils.property(thatLocator, "additionalItemProperty", rhsAdditionalItemProperty), lhsAdditionalItemProperty, rhsAdditionalItemProperty, ((this.additionalItemProperty!= null)&&(!this.additionalItemProperty.isEmpty())), ((that.additionalItemProperty!= null)&&(!that.additionalItemProperty.isEmpty())))) { return false; } } { LotIdentificationType lhsLotIdentification; lhsLotIdentification = this.getLotIdentification(); LotIdentificationType rhsLotIdentification; rhsLotIdentification = that.getLotIdentification(); if (!strategy.equals(LocatorUtils.property(thisLocator, "lotIdentification", lhsLotIdentification), LocatorUtils.property(thatLocator, "lotIdentification", rhsLotIdentification), lhsLotIdentification, rhsLotIdentification, (this.lotIdentification!= null), (that.lotIdentification!= null))) { 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; { UBLExtensionsType theUBLExtensions; theUBLExtensions = this.getUBLExtensions(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "ublExtensions", theUBLExtensions), currentHashCode, theUBLExtensions, (this.ublExtensions!= null)); } { ProductTraceIDType theProductTraceID; theProductTraceID = this.getProductTraceID(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "productTraceID", theProductTraceID), currentHashCode, theProductTraceID, (this.productTraceID!= null)); } { ManufactureDateType theManufactureDate; theManufactureDate = this.getManufactureDate(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "manufactureDate", theManufactureDate), currentHashCode, theManufactureDate, (this.manufactureDate!= null)); } { ManufactureTimeType theManufactureTime; theManufactureTime = this.getManufactureTime(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "manufactureTime", theManufactureTime), currentHashCode, theManufactureTime, (this.manufactureTime!= null)); } { BestBeforeDateType theBestBeforeDate; theBestBeforeDate = this.getBestBeforeDate(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "bestBeforeDate", theBestBeforeDate), currentHashCode, theBestBeforeDate, (this.bestBeforeDate!= null)); } { RegistrationIDType theRegistrationID; theRegistrationID = this.getRegistrationID(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "registrationID", theRegistrationID), currentHashCode, theRegistrationID, (this.registrationID!= null)); } { SerialIDType theSerialID; theSerialID = this.getSerialID(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "serialID", theSerialID), currentHashCode, theSerialID, (this.serialID!= null)); } { List theAdditionalItemProperty; theAdditionalItemProperty = (((this.additionalItemProperty!= null)&&(!this.additionalItemProperty.isEmpty()))?this.getAdditionalItemProperty():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "additionalItemProperty", theAdditionalItemProperty), currentHashCode, theAdditionalItemProperty, ((this.additionalItemProperty!= null)&&(!this.additionalItemProperty.isEmpty()))); } { LotIdentificationType theLotIdentification; theLotIdentification = this.getLotIdentification(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "lotIdentification", theLotIdentification), currentHashCode, theLotIdentification, (this.lotIdentification!= null)); } return currentHashCode; } public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy