Package ca.uhn.fhir.model.primitive

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


     * Expression level of the isoform 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 isoform in RPKM
     * </p>
   */
  public RnaSeqIsoform setExpression( double theValue) {
    myExpression = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

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

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

     *
     * </p>
   */
  public DecimalDt getFee() { 
    if (myFee == null) {
      myFee = new DecimalDt();
    }
    return myFee;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Service setFee( double theValue) {
    myFee = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Service setFee( java.math.BigDecimal theValue) {
    myFee = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Service setFee( long theValue) {
    myFee = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * Longitude. The value domain and the interpretation are the same as for the text of the longitude element in KML (see notes below)
     * </p>
   */
  public DecimalDt getLongitude() { 
    if (myLongitude == null) {
      myLongitude = new DecimalDt();
    }
    return myLongitude;
  }
View Full Code Here

     * <b>Definition:</b>
     * Longitude. The value domain and the interpretation are the same as for the text of the longitude element in KML (see notes below)
     * </p>
   */
  public Position setLongitude( double theValue) {
    myLongitude = 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.