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

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


     * The quantity of specimen collected; for instance the volume of a blood sample, or the physical measurement of an anatomic pathology sample
     * </p>
   */
  public QuantityDt getQuantity() { 
    if (myQuantity == null) {
      myQuantity = new QuantityDt();
    }
    return myQuantity;
  }
View Full Code Here


     * <b>Definition:</b>
     * The quantity of specimen collected; for instance the volume of a blood sample, or the physical measurement of an anatomic pathology sample
     * </p>
   */
  public Collection setQuantity( QuantityCompararatorEnum theComparator,  double theValue,  String theSystem,  String theUnits) {
    myQuantity = new QuantityDt(theComparator, theValue, theSystem, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The quantity of specimen collected; for instance the volume of a blood sample, or the physical measurement of an anatomic pathology sample
     * </p>
   */
  public Collection setQuantity( QuantityCompararatorEnum theComparator,  long theValue,  String theSystem,  String theUnits) {
    myQuantity = new QuantityDt(theComparator, theValue, theSystem, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The quantity of specimen collected; for instance the volume of a blood sample, or the physical measurement of an anatomic pathology sample
     * </p>
   */
  public Collection setQuantity( QuantityCompararatorEnum theComparator,  double theValue,  String theUnits) {
    myQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The quantity of specimen collected; for instance the volume of a blood sample, or the physical measurement of an anatomic pathology sample
     * </p>
   */
  public Collection setQuantity( QuantityCompararatorEnum theComparator,  long theValue,  String theUnits) {
    myQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The quantity of specimen collected; for instance the volume of a blood sample, or the physical measurement of an anatomic pathology sample
     * </p>
   */
  public Collection setQuantity( double theValue) {
    myQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The quantity of specimen collected; for instance the volume of a blood sample, or the physical measurement of an anatomic pathology sample
     * </p>
   */
  public Collection setQuantity( long theValue) {
    myQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

     * The capacity (volume or other measure) the container may contain.
     * </p>
   */
  public QuantityDt getCapacity() { 
    if (myCapacity == null) {
      myCapacity = new QuantityDt();
    }
    return myCapacity;
  }
View Full Code Here

     * <b>Definition:</b>
     * The capacity (volume or other measure) the container may contain.
     * </p>
   */
  public Container setCapacity( QuantityCompararatorEnum theComparator,  double theValue,  String theSystem,  String theUnits) {
    myCapacity = new QuantityDt(theComparator, theValue, theSystem, theUnits);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The capacity (volume or other measure) the container may contain.
     * </p>
   */
  public Container setCapacity( QuantityCompararatorEnum theComparator,  long theValue,  String theSystem,  String theUnits) {
    myCapacity = new QuantityDt(theComparator, theValue, theSystem, theUnits);
    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.