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

com.github.rahulsom.cda.EIVLPPDTS 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.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.06.09 at 07:53:51 PM PDT 
//


package com.github.rahulsom.cda;

import java.util.Collection;
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 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;


/**
 *  Note: because this type is defined as an extension of SXCM_T, all of the attributes and elements accepted for T are also accepted by this definition. However, they are NOT allowed by the normative description of this type. Unfortunately, we cannot write a general purpose schematron contraints to provide that extra validation, thus applications must be aware that instance (fragments) that pass validation with this might might still not be legal. 
 * 
 * 

Java class for EIVL_PPD_TS complex type. * *

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

 * <complexType name="EIVL_PPD_TS">
 *   <complexContent>
 *     <extension base="{urn:hl7-org:v3}SXCM_PPD_TS">
 *       <sequence>
 *         <element name="event" type="{urn:hl7-org:v3}EIVL.event" minOccurs="0"/>
 *         <element name="offset" type="{urn:hl7-org:v3}IVL_PPD_PQ" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EIVL_PPD_TS", namespace = "urn:hl7-org:v3", propOrder = { "event", "offset" }) public class EIVLPPDTS extends SXCMPPDTS { @XmlElement(namespace = "urn:hl7-org:v3") protected EIVLEvent event; @XmlElement(namespace = "urn:hl7-org:v3") protected IVLPPDPQ offset; /** * Gets the value of the event property. * * @return * possible object is * {@link EIVLEvent } * */ public EIVLEvent getEvent() { return event; } /** * Sets the value of the event property. * * @param value * allowed object is * {@link EIVLEvent } * */ public void setEvent(EIVLEvent value) { this.event = value; } /** * Gets the value of the offset property. * * @return * possible object is * {@link IVLPPDPQ } * */ public IVLPPDPQ getOffset() { return offset; } /** * Sets the value of the offset property. * * @param value * allowed object is * {@link IVLPPDPQ } * */ public void setOffset(IVLPPDPQ value) { this.offset = value; } public EIVLPPDTS withEvent(EIVLEvent value) { setEvent(value); return this; } public EIVLPPDTS withOffset(IVLPPDPQ value) { setOffset(value); return this; } @Override public EIVLPPDTS withOperator(SetOperator value) { setOperator(value); return this; } @Override public EIVLPPDTS withStandardDeviation(PQ value) { setStandardDeviation(value); return this; } @Override public EIVLPPDTS withDistributionType(ProbabilityDistributionType value) { setDistributionType(value); return this; } @Override public EIVLPPDTS withValue(String value) { setValue(value); return this; } @Override public EIVLPPDTS withNullFlavor(String... values) { if (values!= null) { for (String value: values) { getNullFlavor().add(value); } } return this; } @Override public EIVLPPDTS 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