Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * The value of the measured amount. The value includes an implicit precision in the presentation of the value
     * </p>
   */
  public QuantityDt setValue( java.math.BigDecimal theValue) {
    myValue = new DecimalDt(theValue);
    return this;
  }
View Full Code Here


     * <b>Definition:</b>
     * The value of the measured amount. The value includes an implicit precision in the presentation of the value
     * </p>
   */
  public QuantityDt setValue( long theValue) {
    myValue = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * The amount to reimbuse for a laboratory service.
     * </p>
   */
  public DecimalDt getFee() { 
    if (myFee == null) {
      myFee = new DecimalDt();
    }
    return myFee;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount to reimbuse for a laboratory service.
     * </p>
   */
  public ServiceLab setFee( double theValue) {
    myFee = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount to reimbuse for a laboratory service.
     * </p>
   */
  public ServiceLab setFee( java.math.BigDecimal theValue) {
    myFee = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount to reimbuse for a laboratory service.
     * </p>
   */
  public ServiceLab setFee( long theValue) {
    myFee = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * Expression level of the gene in RPKM
     * </p>
   */
  public DecimalDt getExpression() { 
    if (myExpression == null) {
      myExpression = new DecimalDt();
    }
    return myExpression;
  }
View Full Code Here

     * <b>Definition:</b>
     * Expression level of the gene in RPKM
     * </p>
   */
  public RnaSeq setExpression( double theValue) {
    myExpression = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Expression level of the gene in RPKM
     * </p>
   */
  public RnaSeq setExpression( java.math.BigDecimal theValue) {
    myExpression = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Expression level of the gene in RPKM
     * </p>
   */
  public RnaSeq setExpression( long theValue) {
    myExpression = 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.