Examples of QuantityDt


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

     * The quantity of vaccine product that was administered
     * </p>
   */
  public QuantityDt getDoseQuantity() { 
    if (myDoseQuantity == null) {
      myDoseQuantity = new QuantityDt();
    }
    return myDoseQuantity;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The quantity of vaccine product that was administered
     * </p>
   */
  public Immunization setDoseQuantity( QuantityCompararatorEnum theComparator,  long theValue,  String theUnits) {
    myDoseQuantity = 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 vaccine product that was administered
     * </p>
   */
  public Immunization setDoseQuantity( QuantityCompararatorEnum theComparator,  double theValue,  String theUnits) {
    myDoseQuantity = 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 vaccine product that was administered
     * </p>
   */
  public Immunization setDoseQuantity( long theValue) {
    myDoseQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The quantity of vaccine product that was administered
     * </p>
   */
  public Immunization setDoseQuantity( double theValue) {
    myDoseQuantity = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

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

     * The value of the low bound of the reference range. If this is omitted, the low bound of the reference range is assumed to be meaningless. E.g. <2.3
     * </p>
   */
  public QuantityDt getLow() { 
    if (myLow == null) {
      myLow = new QuantityDt();
    }
    return myLow;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The value of the low bound of the reference range. If this is omitted, the low bound of the reference range is assumed to be meaningless. E.g. <2.3
     * </p>
   */
  public ReferenceRange setLow( QuantityCompararatorEnum theComparator,  long theValue,  String theUnits) {
    myLow = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The value of the low bound of the reference range. If this is omitted, the low bound of the reference range is assumed to be meaningless. E.g. <2.3
     * </p>
   */
  public ReferenceRange setLow( QuantityCompararatorEnum theComparator,  double theValue,  String theUnits) {
    myLow = new QuantityDt(theComparator, theValue, theUnits);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The value of the low bound of the reference range. If this is omitted, the low bound of the reference range is assumed to be meaningless. E.g. <2.3
     * </p>
   */
  public ReferenceRange setLow( long theValue) {
    myLow = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The value of the low bound of the reference range. If this is omitted, the low bound of the reference range is assumed to be meaningless. E.g. <2.3
     * </p>
   */
  public ReferenceRange setLow( double theValue) {
    myLow = 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.