Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Time when specimen was received for processing or testing
     * </p>
   */
  public Specimen setReceivedTimeWithSecondsPrecision( Date theDate) {
    myReceivedTime = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here


     * The date and time of birth for the practitioner
     * </p>
   */
  public DateTimeDt getBirthDate() { 
    if (myBirthDate == null) {
      myBirthDate = new DateTimeDt();
    }
    return myBirthDate;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date and time of birth for the practitioner
     * </p>
   */
  public Practitioner setBirthDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myBirthDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date and time of birth for the practitioner
     * </p>
   */
  public Practitioner setBirthDateWithSecondsPrecision( Date theDate) {
    myBirthDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date vaccine administered or was to be administered
     * </p>
   */
  public Immunization setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date vaccine administered or was to be administered
     * </p>
   */
  public Immunization setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * Date of reaction to the immunization
     * </p>
   */
  public DateTimeDt getDate() { 
    if (myDate == null) {
      myDate = new DateTimeDt();
    }
    return myDate;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date of reaction to the immunization
     * </p>
   */
  public Reaction setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date of reaction to the immunization
     * </p>
   */
  public Reaction setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public DateTimeDt getDate() { 
    if (myDate == null) {
      myDate = new DateTimeDt();
    }
    return myDate;
  }
View Full Code Here

TOP

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

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.