Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * The minimum number of times this element SHALL appear in the instance
     * </p>
   */
  public StructureElementDefinition setMin( int theInteger) {
    myMin = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here


     * Indicates the shortest length that SHALL be supported by conformant instances without truncation
     * </p>
   */
  public IntegerDt getMaxLength() { 
    if (myMaxLength == null) {
      myMaxLength = new IntegerDt();
    }
    return myMaxLength;
  }
View Full Code Here

     * <b>Definition:</b>
     * Indicates the shortest length that SHALL be supported by conformant instances without truncation
     * </p>
   */
  public StructureElementDefinition setMaxLength( int theInteger) {
    myMaxLength = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * The number of sample points at each time point. If this value is greater than one, then the dimensions will be interlaced - all the sample points for a point in time will be recorded at once
     * </p>
   */
  public IntegerDt getDimensions() { 
    if (myDimensions == null) {
      myDimensions = new IntegerDt();
    }
    return myDimensions;
  }
View Full Code Here

     * <b>Definition:</b>
     * The number of sample points at each time point. If this value is greater than one, then the dimensions will be interlaced - all the sample points for a point in time will be recorded at once
     * </p>
   */
  public SampledDataDt setDimensions( int theInteger) {
    myDimensions = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * The number of bytes of data that make up this attachment.
     * </p>
   */
  public IntegerDt getSize() { 
    if (mySize == null) {
      mySize = new IntegerDt();
    }
    return mySize;
  }
View Full Code Here

     * <b>Definition:</b>
     * The number of bytes of data that make up this attachment.
     * </p>
   */
  public AttachmentDt setSize( int theInteger) {
    mySize = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * Start position of the DNA region of interest
     * </p>
   */
  public IntegerDt getRegionOfInterestStart() { 
    if (myRegionOfInterestStart == null) {
      myRegionOfInterestStart = new IntegerDt();
    }
    return myRegionOfInterestStart;
  }
View Full Code Here

     * <b>Definition:</b>
     * Start position of the DNA region of interest
     * </p>
   */
  public DnaRegionAnalysisTestCoverageDnaRegionOfInterest setRegionOfInterestStart( int theInteger) {
    myRegionOfInterestStart = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

     * End position of the DNA region of interest
     * </p>
   */
  public IntegerDt getRegionOfInterestStop() { 
    if (myRegionOfInterestStop == null) {
      myRegionOfInterestStop = new IntegerDt();
    }
    return myRegionOfInterestStop;
  }
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.