Package ca.uhn.fhir.model.primitive

Examples of ca.uhn.fhir.model.primitive.DecimalDt


     * The percent of the service fee which would be elegible for coverage
     * </p>
   */
  public DecimalDt getRate() { 
    if (myRate == null) {
      myRate = new DecimalDt();
    }
    return myRate;
  }
View Full Code Here


     * <b>Definition:</b>
     * The percent of the service fee which would be elegible for coverage
     * </p>
   */
  public Service setRate( double theValue) {
    myRate = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The percent of the service fee which would be elegible for coverage
     * </p>
   */
  public Service setRate( java.math.BigDecimal theValue) {
    myRate = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The percent of the service fee which would be elegible for coverage
     * </p>
   */
  public Service setRate( long theValue) {
    myRate = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * The amount payable for a submitted service (includes both professional and lab fees.)
     * </p>
   */
  public DecimalDt getBenefit() { 
    if (myBenefit == null) {
      myBenefit = new DecimalDt();
    }
    return myBenefit;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount payable for a submitted service (includes both professional and lab fees.)
     * </p>
   */
  public Service setBenefit( double theValue) {
    myBenefit = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount payable for a submitted service (includes both professional and lab fees.)
     * </p>
   */
  public Service setBenefit( java.math.BigDecimal theValue) {
    myBenefit = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The amount payable for a submitted service (includes both professional and lab fees.)
     * </p>
   */
  public Service setBenefit( long theValue) {
    myBenefit = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

     * How long each repetition should last
     * </p>
   */
  public DecimalDt getDuration() { 
    if (myDuration == null) {
      myDuration = new DecimalDt();
    }
    return myDuration;
  }
View Full Code Here

     * <b>Definition:</b>
     * How long each repetition should last
     * </p>
   */
  public Repeat setDuration( double theValue) {
    myDuration = new DecimalDt(theValue);
    return this;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.DecimalDt

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.