Package ca.uhn.fhir.model.primitive

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


     * The lower limit of detection of the measured points. This is needed if any of the data points have the value \"L\" (lower than detection limit)
     * </p>
   */
  public DecimalDt getLowerLimit() { 
    if (myLowerLimit == null) {
      myLowerLimit = new DecimalDt();
    }
    return myLowerLimit;
  }
View Full Code Here


     * <b>Definition:</b>
     * The lower limit of detection of the measured points. This is needed if any of the data points have the value \"L\" (lower than detection limit)
     * </p>
   */
  public SampledDataDt setLowerLimit( long theValue) {
    myLowerLimit = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The lower limit of detection of the measured points. This is needed if any of the data points have the value \"L\" (lower than detection limit)
     * </p>
   */
  public SampledDataDt setLowerLimit( double theValue) {
    myLowerLimit = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The lower limit of detection of the measured points. This is needed if any of the data points have the value \"L\" (lower than detection limit)
     * </p>
   */
  public SampledDataDt setLowerLimit( java.math.BigDecimal theValue) {
    myLowerLimit = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * The upper limit of detection of the measured points. This is needed if any of the data points have the value \"U\" (higher than detection limit)
     * </p>
   */
  public DecimalDt getUpperLimit() { 
    if (myUpperLimit == null) {
      myUpperLimit = new DecimalDt();
    }
    return myUpperLimit;
  }
View Full Code Here

     * <b>Definition:</b>
     * The upper limit of detection of the measured points. This is needed if any of the data points have the value \"U\" (higher than detection limit)
     * </p>
   */
  public SampledDataDt setUpperLimit( long theValue) {
    myUpperLimit = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The upper limit of detection of the measured points. This is needed if any of the data points have the value \"U\" (higher than detection limit)
     * </p>
   */
  public SampledDataDt setUpperLimit( double theValue) {
    myUpperLimit = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The upper limit of detection of the measured points. This is needed if any of the data points have the value \"U\" (higher than detection limit)
     * </p>
   */
  public SampledDataDt setUpperLimit( java.math.BigDecimal theValue) {
    myUpperLimit = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * The percent of the service fee which would be elegible for coverage
     * </p>
   */
  public DecimalDt getRate() { 
    if (myRate == null) {
      myRate = new DecimalDt();
    }
    return myRate;
  }
View Full Code Here

     * <b>Definition:</b>
     * The percent of the service fee which would be elegible for coverage
     * </p>
   */
  public Service setRate( long theValue) {
    myRate = 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.