Package ca.uhn.fhir.model.primitive

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


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


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

     * The length of time between sampling times, measured in milliseconds
     * </p>
   */
  public DecimalDt getPeriod() { 
    if (myPeriod == null) {
      myPeriod = new DecimalDt();
    }
    return myPeriod;
  }
View Full Code Here

     * <b>Definition:</b>
     * The length of time between sampling times, measured in milliseconds
     * </p>
   */
  public SampledDataDt setPeriod( long theValue) {
    myPeriod = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The length of time between sampling times, measured in milliseconds
     * </p>
   */
  public SampledDataDt setPeriod( double theValue) {
    myPeriod = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The length of time between sampling times, measured in milliseconds
     * </p>
   */
  public SampledDataDt setPeriod( java.math.BigDecimal theValue) {
    myPeriod = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * A correction factor that is applied to the sampled data points before they are added to the origin
     * </p>
   */
  public DecimalDt getFactor() { 
    if (myFactor == null) {
      myFactor = new DecimalDt();
    }
    return myFactor;
  }
View Full Code Here

     * <b>Definition:</b>
     * A correction factor that is applied to the sampled data points before they are added to the origin
     * </p>
   */
  public SampledDataDt setFactor( long theValue) {
    myFactor = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * A correction factor that is applied to the sampled data points before they are added to the origin
     * </p>
   */
  public SampledDataDt setFactor( double theValue) {
    myFactor = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * A correction factor that is applied to the sampled data points before they are added to the origin
     * </p>
   */
  public SampledDataDt setFactor( java.math.BigDecimal theValue) {
    myFactor = 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.