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

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


     * The amount of therapeutic or other substance given at one administration event.
     * </p>
   */
  public QuantityDt getDoseQuantity() { 
    if (myDoseQuantity == null) {
      myDoseQuantity = new QuantityDt();
    }
    return myDoseQuantity;
  }
View Full Code Here


     * <b>Definition:</b>
     * The amount of therapeutic or other substance given at one administration event.
     * </p>
   */
  public DosageInstruction setDoseQuantity( QuantityCompararatorEnum theComparator,  long theValue,  String theUnits) {
    myDoseQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount of therapeutic or other substance given at one administration event.
     * </p>
   */
  public DosageInstruction setDoseQuantity( QuantityCompararatorEnum theComparator,  double theValue,  String theUnits) {
    myDoseQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount of therapeutic or other substance given at one administration event.
     * </p>
   */
  public DosageInstruction setDoseQuantity( long theValue) {
    myDoseQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount of therapeutic or other substance given at one administration event.
     * </p>
   */
  public DosageInstruction setDoseQuantity( double theValue) {
    myDoseQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * The amount that is to be dispensed.
     * </p>
   */
  public QuantityDt getQuantity() { 
    if (myQuantity == null) {
      myQuantity = new QuantityDt();
    }
    return myQuantity;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount that is to be dispensed.
     * </p>
   */
  public Dispense setQuantity( QuantityCompararatorEnum theComparator,  long theValue,  String theUnits) {
    myQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount that is to be dispensed.
     * </p>
   */
  public Dispense setQuantity( QuantityCompararatorEnum theComparator,  double theValue,  String theUnits) {
    myQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount that is to be dispensed.
     * </p>
   */
  public Dispense setQuantity( long theValue) {
    myQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount that is to be dispensed.
     * </p>
   */
  public Dispense 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.