Package ca.uhn.fhir.model.primitive

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


     * The date that this version of the profile was published
     * </p>
   */
  public DateTimeDt getDate() { 
    if (myDate == null) {
      myDate = new DateTimeDt();
    }
    return myDate;
  }
View Full Code Here


     * <b>Definition:</b>
     * The date that this version of the profile was published
     * </p>
   */
  public Profile setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date that this version of the profile was published
     * </p>
   */
  public Profile setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

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

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

     * <b>Definition:</b>
     *
     * </p>
   */
  public AppointmentResponse setRecordedDateWithSecondsPrecision( Date theDate) {
    myRecordedDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * When to stop repeating the schedule
     * </p>
   */
  public DateTimeDt getEnd() { 
    if (myEnd == null) {
      myEnd = new DateTimeDt();
    }
    return myEnd;
  }
View Full Code Here

     * <b>Definition:</b>
     * When to stop repeating the schedule
     * </p>
   */
  public Repeat setEnd( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myEnd = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * When to stop repeating the schedule
     * </p>
   */
  public Repeat setEndWithSecondsPrecision( Date theDate) {
    myEnd = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public DateTimeDt getAuthorDate() { 
    if (myAuthorDate == null) {
      myAuthorDate = new DateTimeDt();
    }
    return myAuthorDate;
  }
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.