Examples of QuantityDt


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

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

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

     * <b>Definition:</b>
     * The value of the high bound of the reference range. If this is omitted, the high bound of the reference range is assumed to be meaningless. E.g. >5
     * </p>
   */
  public ReferenceRange setHigh( QuantityCompararatorEnum theComparator,  long theValue,  String theUnits) {
    myHigh = 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 high bound of the reference range. If this is omitted, the high bound of the reference range is assumed to be meaningless. E.g. >5
     * </p>
   */
  public ReferenceRange setHigh( QuantityCompararatorEnum theComparator,  double theValue,  String theUnits) {
    myHigh = 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 high bound of the reference range. If this is omitted, the high bound of the reference range is assumed to be meaningless. E.g. >5
     * </p>
   */
  public ReferenceRange setHigh( long theValue) {
    myHigh = 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 high bound of the reference range. If this is omitted, the high bound of the reference range is assumed to be meaningless. E.g. >5
     * </p>
   */
  public ReferenceRange setHigh( double theValue) {
    myHigh = new QuantityDt(theValue);
    return this;
  }
View Full Code Here

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

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

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

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

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

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

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

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

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

     * <b>Definition:</b>
     * The amount of therapeutic or other substance given at one administration event.
     * </p>
   */
  public DispenseDosage setQuantity( double theValue) {
    myQuantity = 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.