Examples of DecimalDt


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

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

     * <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

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

     * <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

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

     * <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

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

     * 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

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

     * <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

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

     * <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

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

     * <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

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

     * The value of the measured amount. The value includes an implicit precision in the presentation of the value
     * </p>
   */
  public DecimalDt getValue() { 
    if (myValue == null) {
      myValue = new DecimalDt();
    }
    return myValue;
  }
View Full Code Here

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( double theValue) {
    myValue = new DecimalDt(theValue);
    return this;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.