Package ca.uhn.fhir.model.dstu.composite

Examples of ca.uhn.fhir.model.dstu.composite.QuantityDt


     * Identifies the quantity expected to be consumed in a given day.
     * </p>
   */
  public QuantityDt getDailyAmount() { 
    if (myDailyAmount == null) {
      myDailyAmount = new QuantityDt();
    }
    return myDailyAmount;
  }
View Full Code Here


     * <b>Definition:</b>
     * Identifies the quantity expected to be consumed in a given day.
     * </p>
   */
  public ActivitySimple setDailyAmount( QuantityCompararatorEnum theComparator,  long theValue,  String theUnits) {
    myDailyAmount = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the quantity expected to be consumed in a given day.
     * </p>
   */
  public ActivitySimple setDailyAmount( QuantityCompararatorEnum theComparator,  double theValue,  String theUnits) {
    myDailyAmount = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the quantity expected to be consumed in a given day.
     * </p>
   */
  public ActivitySimple setDailyAmount( long theValue) {
    myDailyAmount = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the quantity expected to be consumed in a given day.
     * </p>
   */
  public ActivitySimple setDailyAmount( double theValue) {
    myDailyAmount = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * Identifies the quantity expected to be supplied.
     * </p>
   */
  public QuantityDt getQuantity() { 
    if (myQuantity == null) {
      myQuantity = new QuantityDt();
    }
    return myQuantity;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the quantity expected to be supplied.
     * </p>
   */
  public ActivitySimple setQuantity( QuantityCompararatorEnum theComparator,  long theValue,  String theUnits) {
    myQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the quantity expected to be supplied.
     * </p>
   */
  public ActivitySimple setQuantity( QuantityCompararatorEnum theComparator,  double theValue,  String theUnits) {
    myQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the quantity expected to be supplied.
     * </p>
   */
  public ActivitySimple setQuantity( long theValue) {
    myQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the quantity expected to be supplied.
     * </p>
   */
  public ActivitySimple setQuantity( double theValue) {
    myQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.dstu.composite.QuantityDt

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.