Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * The date that the concept map status was last changed
     * </p>
   */
  public ConceptMap setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here


     * When the media was originally recorded. For video and audio, if the length of the recording is not insignificant, this is the end of the recording
     * </p>
   */
  public DateTimeDt getDateTime() { 
    if (myDateTime == null) {
      myDateTime = new DateTimeDt();
    }
    return myDateTime;
  }
View Full Code Here

     * <b>Definition:</b>
     * When the media was originally recorded. For video and audio, if the length of the recording is not insignificant, this is the end of the recording
     * </p>
   */
  public Media setDateTime( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDateTime = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * When the media was originally recorded. For video and audio, if the length of the recording is not insignificant, this is the end of the recording
     * </p>
   */
  public Media setDateTimeWithSecondsPrecision( Date theDate) {
    myDateTime = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * Date when the sensitivity was recorded
     * </p>
   */
  public DateTimeDt getRecordedDate() { 
    if (myRecordedDate == null) {
      myRecordedDate = new DateTimeDt();
    }
    return myRecordedDate;
  }
View Full Code Here

     * Identifies the most recent date on which the plan has been revised.
     * </p>
   */
  public DateTimeDt getModified() { 
    if (myModified == null) {
      myModified = new DateTimeDt();
    }
    return myModified;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the most recent date on which the plan has been revised.
     * </p>
   */
  public CarePlan setModified( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myModified = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies the most recent date on which the plan has been revised.
     * </p>
   */
  public CarePlan setModifiedWithSecondsPrecision( Date theDate) {
    myModified = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date when the sensitivity was recorded
     * </p>
   */
  public AllergyIntolerance setRecordedDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myRecordedDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date when the sensitivity was recorded
     * </p>
   */
  public AllergyIntolerance setRecordedDateWithSecondsPrecision( Date theDate) {
    myRecordedDate = new DateTimeDt(theDate);
    return this;
  }
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.