Examples of QuantityDt


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

     * 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

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

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

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

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

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

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

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

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

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

     * The quantity of specimen in the container; may be volume, dimensions, or other appropriate measurements, depending on the specimen type
     * </p>
   */
  public QuantityDt getSpecimenQuantity() { 
    if (mySpecimenQuantity == null) {
      mySpecimenQuantity = new QuantityDt();
    }
    return mySpecimenQuantity;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The quantity of specimen in the container; may be volume, dimensions, or other appropriate measurements, depending on the specimen type
     * </p>
   */
  public Container setSpecimenQuantity( QuantityCompararatorEnum theComparator,  long theValue,  String theUnits) {
    mySpecimenQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The quantity of specimen in the container; may be volume, dimensions, or other appropriate measurements, depending on the specimen type
     * </p>
   */
  public Container setSpecimenQuantity( QuantityCompararatorEnum theComparator,  double theValue,  String theUnits) {
    mySpecimenQuantity = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The quantity of specimen in the container; may be volume, dimensions, or other appropriate measurements, depending on the specimen type
     * </p>
   */
  public Container setSpecimenQuantity( long theValue) {
    mySpecimenQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The quantity of specimen in the container; may be volume, dimensions, or other appropriate measurements, depending on the specimen type
     * </p>
   */
  public Container setSpecimenQuantity( double theValue) {
    mySpecimenQuantity = new QuantityDt(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.