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

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


     * The amount of supply that has been dispensed. Includes unit of measure.
     * </p>
   */
  public QuantityDt getQuantity() { 
    if (myQuantity == null) {
      myQuantity = new QuantityDt();
    }
    return myQuantity;
  }
View Full Code Here


     * <b>Definition:</b>
     * The amount of supply that has been dispensed. Includes unit of measure.
     * </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 of supply that has been dispensed. Includes unit of measure.
     * </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 of supply that has been dispensed. Includes unit of measure.
     * </p>
   */
  public Dispense setQuantity( long theValue) {
    myQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount of supply that has been dispensed. Includes unit of measure.
     * </p>
   */
  public Dispense setQuantity( double theValue) {
    myQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * The amount of medication that has been dispensed. Includes unit of measure.
     * </p>
   */
  public QuantityDt getQuantity() { 
    if (myQuantity == null) {
      myQuantity = new QuantityDt();
    }
    return myQuantity;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount of medication that has been dispensed. Includes unit of measure.
     * </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 of medication that has been dispensed. Includes unit of measure.
     * </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 of medication that has been dispensed. Includes unit of measure.
     * </p>
   */
  public Dispense setQuantity( long theValue) {
    myQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount of medication that has been dispensed. Includes unit of measure.
     * </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.