Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.DecimalDt


     * Intensity(expression) of the gene
     * </p>
   */
  public DecimalDt getIntensity() { 
    if (myIntensity == null) {
      myIntensity = new DecimalDt();
    }
    return myIntensity;
  }
View Full Code Here


     * <b>Definition:</b>
     * Intensity(expression) of the gene
     * </p>
   */
  public Sample setIntensity( double theValue) {
    myIntensity = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Intensity(expression) of the gene
     * </p>
   */
  public Sample setIntensity( java.math.BigDecimal theValue) {
    myIntensity = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Intensity(expression) of the gene
     * </p>
   */
  public Sample setIntensity( long theValue) {
    myIntensity = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public DecimalDt addDecimalErr() {
    DecimalDt newType = new DecimalDt();
    getDecimalErr().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Test addDecimalErr( double theValue) {
    if (myDecimalErr == null) {
      myDecimalErr = new java.util.ArrayList<DecimalDt>();
    }
    myDecimalErr.add(new DecimalDt(theValue));
    return this;
  }
View Full Code Here

   */
  public Test addDecimalErr( java.math.BigDecimal theValue) {
    if (myDecimalErr == null) {
      myDecimalErr = new java.util.ArrayList<DecimalDt>();
    }
    myDecimalErr.add(new DecimalDt(theValue));
    return this;
  }
View Full Code Here

   */
  public Test addDecimalErr( long theValue) {
    if (myDecimalErr == null) {
      myDecimalErr = new java.util.ArrayList<DecimalDt>();
    }
    myDecimalErr.add(new DecimalDt(theValue));
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public DecimalDt addDecimalCorr() {
    DecimalDt newType = new DecimalDt();
    getDecimalCorr().add(newType);
    return newType;
  }
View Full Code Here

   */
  public Test addDecimalCorr( double theValue) {
    if (myDecimalCorr == null) {
      myDecimalCorr = new java.util.ArrayList<DecimalDt>();
    }
    myDecimalCorr.add(new DecimalDt(theValue));
    return this;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.DecimalDt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.