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

ihe.iti.svs._2008.PPDPQ Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version

package ihe.iti.svs._2008;

import java.util.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
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 PPD_PQ complex type. * *

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

 * <complexType name="PPD_PQ">
 *   <complexContent>
 *     <extension base="{urn:ihe:iti:svs:2008}PQ">
 *       <sequence>
 *         <element name="standardDeviation" type="{urn:ihe:iti:svs:2008}PQ" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="distributionType" type="{urn:ihe:iti:svs:2008}ProbabilityDistributionType" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PPD_PQ", propOrder = { "standardDeviation" }) @XmlSeeAlso({ IVXBPPDPQ.class, SXCMPPDPQ.class }) public class PPDPQ extends PQ { protected PQ standardDeviation; @XmlAttribute(name = "distributionType") protected ProbabilityDistributionType distributionType; /** * Gets the value of the standardDeviation property. * * @return * possible object is * {@link PQ } * */ public PQ getStandardDeviation() { return standardDeviation; } /** * Sets the value of the standardDeviation property. * * @param value * allowed object is * {@link PQ } * */ public void setStandardDeviation(PQ value) { this.standardDeviation = value; } /** * Gets the value of the distributionType property. * * @return * possible object is * {@link ProbabilityDistributionType } * */ public ProbabilityDistributionType getDistributionType() { return distributionType; } /** * Sets the value of the distributionType property. * * @param value * allowed object is * {@link ProbabilityDistributionType } * */ public void setDistributionType(ProbabilityDistributionType value) { this.distributionType = value; } public PPDPQ withStandardDeviation(PQ value) { setStandardDeviation(value); return this; } public PPDPQ withDistributionType(ProbabilityDistributionType value) { setDistributionType(value); return this; } @Override public PPDPQ withTranslation(PQR... values) { if (values!= null) { for (PQR value: values) { getTranslation().add(value); } } return this; } @Override public PPDPQ withTranslation(Collection values) { if (values!= null) { getTranslation().addAll(values); } return this; } @Override public PPDPQ withValue(String value) { setValue(value); return this; } @Override public PPDPQ withUnit(String value) { setUnit(value); return this; } @Override public PPDPQ withNullFlavor(String... values) { if (values!= null) { for (String value: values) { getNullFlavor().add(value); } } return this; } @Override public PPDPQ 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