Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Nominal position in a series
     * </p>
   */
  public VaccinationProtocol setDoseSequence( int theInteger) {
    myDoseSequence = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here


     * The recommended number of doses to achieve immunity.
     * </p>
   */
  public IntegerDt getSeriesDoses() { 
    if (mySeriesDoses == null) {
      mySeriesDoses = new IntegerDt();
    }
    return mySeriesDoses;
  }
View Full Code Here

     * <b>Definition:</b>
     * The recommended number of doses to achieve immunity.
     * </p>
   */
  public VaccinationProtocol setSeriesDoses( int theInteger) {
    mySeriesDoses = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * A unique identifier for a dependent under the coverage.
     * </p>
   */
  public IntegerDt getDependent() { 
    if (myDependent == null) {
      myDependent = new IntegerDt();
    }
    return myDependent;
  }
View Full Code Here

     * <b>Definition:</b>
     * A unique identifier for a dependent under the coverage.
     * </p>
   */
  public Coverage setDependent( int theInteger) {
    myDependent = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * An optional counter for a particular instance of the identified coverage which increments upon each renewal.
     * </p>
   */
  public IntegerDt getSequence() { 
    if (mySequence == null) {
      mySequence = new IntegerDt();
    }
    return mySequence;
  }
View Full Code Here

     * <b>Definition:</b>
     * An optional counter for a particular instance of the identified coverage which increments upon each renewal.
     * </p>
   */
  public Coverage setSequence( int theInteger) {
    mySequence = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * Number of Series in Study
     * </p>
   */
  public IntegerDt getNumberOfSeries() { 
    if (myNumberOfSeries == null) {
      myNumberOfSeries = new IntegerDt();
    }
    return myNumberOfSeries;
  }
View Full Code Here

     * <b>Definition:</b>
     * Number of Series in Study
     * </p>
   */
  public ImagingStudy setNumberOfSeries( int theInteger) {
    myNumberOfSeries = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * Number of SOP Instances in Study
     * </p>
   */
  public IntegerDt getNumberOfInstances() { 
    if (myNumberOfInstances == null) {
      myNumberOfInstances = new IntegerDt();
    }
    return myNumberOfInstances;
  }
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.