Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * This indicates the next recommended dose number (e.g. dose 2 is the next recommended dose).
     * </p>
   */
  public Recommendation setDoseNumber( int theInteger) {
    myDoseNumber = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here


     * Indicates the nominal position in a series of the next dose.  This is the recommended dose number as per a specified protocol.
     * </p>
   */
  public IntegerDt getDoseSequence() { 
    if (myDoseSequence == null) {
      myDoseSequence = new IntegerDt();
    }
    return myDoseSequence;
  }
View Full Code Here

     * <b>Definition:</b>
     * Indicates the nominal position in a series of the next dose.  This is the recommended dose number as per a specified protocol.
     * </p>
   */
  public RecommendationProtocol setDoseSequence( int theInteger) {
    myDoseSequence = new IntegerDt(theInteger);
    return this;
  }
View Full Code Here

  }

  public static Object fromInteger(Class<?> theType, IntegerDt theArgument) {
    if (theType.equals(IntegerDt.class)) {
      if (theArgument == null) {
        return new IntegerDt();
      }
      return theArgument;
    }
    if (theType.equals(Integer.class)) {
      if (theArgument == null) {
View Full Code Here

  public static IntegerDt toInteger(Object theArgument) {
    if (theArgument instanceof IntegerDt) {
      return (IntegerDt) theArgument;
    }
    if (theArgument instanceof Integer) {
      return new IntegerDt((Integer) theArgument);
    }
    return null;
  }
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

     *
     * </p>
   */
  public IntegerDt getPriority() { 
    if (myPriority == null) {
      myPriority = new IntegerDt();
    }
    return myPriority;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Appointment setPriority( int theInteger) {
    myPriority = 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

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.