Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     *
     * </p>
   */
  public Response setTotal( int theInteger) {
    myTotal = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here


     * An integer indicating the number of repeats of the Dispense. UsageNotes: For example, the number of times the prescribed quantity is to be supplied including the initial standard fill.
     * </p>
   */
  public IntegerDt getNumberOfRepeatsAllowed() { 
    if (myNumberOfRepeatsAllowed == null) {
      myNumberOfRepeatsAllowed = new IntegerDt();
    }
    return myNumberOfRepeatsAllowed;
  }
View Full Code Here

     * <b>Definition:</b>
     * An integer indicating the number of repeats of the Dispense. UsageNotes: For example, the number of times the prescribed quantity is to be supplied including the initial standard fill.
     * </p>
   */
  public Dispense setNumberOfRepeatsAllowed( int theInteger) {
    myNumberOfRepeatsAllowed = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * Read length of the technology
     * </p>
   */
  public IntegerDt getReadLength() { 
    if (myReadLength == null) {
      myReadLength = new IntegerDt();
    }
    return myReadLength;
  }
View Full Code Here

     * <b>Definition:</b>
     * Read length of the technology
     * </p>
   */
  public Platform setReadLength( int theInteger) {
    myReadLength = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * Read pair span of the technology
     * </p>
   */
  public IntegerDt getReadPairSpan() { 
    if (myReadPairSpan == null) {
      myReadPairSpan = new IntegerDt();
    }
    return myReadPairSpan;
  }
View Full Code Here

     * <b>Definition:</b>
     * Read pair span of the technology
     * </p>
   */
  public Platform setReadPairSpan( int theInteger) {
    myReadPairSpan = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * Average coverage of the technology
     * </p>
   */
  public IntegerDt getAverageCoverage() { 
    if (myAverageCoverage == null) {
      myAverageCoverage = new IntegerDt();
    }
    return myAverageCoverage;
  }
View Full Code Here

     * <b>Definition:</b>
     * Average coverage of the technology
     * </p>
   */
  public Platform setAverageCoverage( int theInteger) {
    myAverageCoverage = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * This indicates the next recommended dose number (e.g. dose 2 is the next recommended dose).
     * </p>
   */
  public IntegerDt getDoseNumber() { 
    if (myDoseNumber == null) {
      myDoseNumber = new IntegerDt();
    }
    return myDoseNumber;
  }
View Full Code Here

TOP

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

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.