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

generated.IVLREAL Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.12.15 at 11:19:24 AM PST 
//


package generated;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;


/**
 * 

Java class for IVL_REAL complex type. * *

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

 * <complexType name="IVL_REAL">
 *   <complexContent>
 *     <extension base="{}SXCM_REAL">
 *       <choice minOccurs="0">
 *         <sequence>
 *           <element name="low" type="{}IVXB_REAL"/>
 *           <choice minOccurs="0">
 *             <element name="width" type="{}REAL" minOccurs="0"/>
 *             <element name="high" type="{}IVXB_REAL" minOccurs="0"/>
 *           </choice>
 *         </sequence>
 *         <element name="high" type="{}IVXB_REAL"/>
 *         <sequence>
 *           <element name="width" type="{}REAL"/>
 *           <element name="high" type="{}IVXB_REAL" minOccurs="0"/>
 *         </sequence>
 *         <sequence>
 *           <element name="center" type="{}REAL"/>
 *           <element name="width" type="{}REAL" minOccurs="0"/>
 *         </sequence>
 *       </choice>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IVL_REAL", propOrder = { "rest" }) public class IVLREAL extends SXCMREAL { @XmlElementRefs({ @XmlElementRef(name = "width", type = JAXBElement.class, required = false), @XmlElementRef(name = "high", type = JAXBElement.class, required = false), @XmlElementRef(name = "center", type = JAXBElement.class, required = false), @XmlElementRef(name = "low", type = JAXBElement.class, required = false) }) protected List> rest; /** * Gets the rest of the content model. * *

* You are getting this "catch-all" property because of the following reason: * The field name "High" is used by two different parts of a schema. See: * line 900 of file:/Users/rahulsomasunderam/IdeaProjects/home/ihe-iti/src/main/resources/iti/schema/HL7V3/NE2008/coreschemas/datatypes.xsd * line 891 of file:/Users/rahulsomasunderam/IdeaProjects/home/ihe-iti/src/main/resources/iti/schema/HL7V3/NE2008/coreschemas/datatypes.xsd *

* To get rid of this property, apply a property customization to one * of both of the following declarations to change their names: * Gets the value of the rest 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 rest property. * *

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

     *    getRest().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JAXBElement }{@code <}{@link REAL }{@code >} * {@link JAXBElement }{@code <}{@link IVXBREAL }{@code >} * {@link JAXBElement }{@code <}{@link REAL }{@code >} * {@link JAXBElement }{@code <}{@link IVXBREAL }{@code >} * * */ public List> getRest() { if (rest == null) { rest = new ArrayList>(); } return this.rest; } public IVLREAL withRest(JAXBElement ... values) { if (values!= null) { for (JAXBElement value: values) { getRest().add(value); } } return this; } public IVLREAL withRest(Collection> values) { if (values!= null) { getRest().addAll(values); } return this; } @Override public IVLREAL withOperator(SetOperator value) { setOperator(value); return this; } @Override public IVLREAL withValue(String value) { setValue(value); return this; } @Override public IVLREAL withNullFlavor(String... values) { if (values!= null) { for (String value: values) { getNullFlavor().add(value); } } return this; } @Override public IVLREAL withNullFlavor(Collection values) { if (values!= null) { getNullFlavor().addAll(values); } return this; } @Override public String toString() { return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE); } @Override public boolean equals(Object that) { return EqualsBuilder.reflectionEquals(this, that); } @Override public int hashCode() { return HashCodeBuilder.reflectionHashCode(this); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy