Package ca.uhn.fhir.model.primitive

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


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


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

     * The instant of time at which the activity was recorded
     * </p>
   */
  public InstantDt getRecorded() { 
    if (myRecorded == null) {
      myRecorded = new InstantDt();
    }
    return myRecorded;
  }
View Full Code Here

     * <b>Definition:</b>
     * The instant of time at which the activity was recorded
     * </p>
   */
  public Provenance setRecorded( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myRecorded = new InstantDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The instant of time at which the activity was recorded
     * </p>
   */
  public Provenance setRecordedWithMillisPrecision( Date theDate) {
    myRecorded = new InstantDt(theDate);
    return this;
  }
View Full Code Here

  /**
   * Gets the date/time that thius entry was deleted.
   */
  public InstantDt getDeletedAt() {
    if (myDeletedAt == null) {
      myDeletedAt = new InstantDt();
    }
    return myDeletedAt;
  }
View Full Code Here

    return myLinkSelf;
  }

  public InstantDt getPublished() {
    if (myPublished == null) {
      myPublished = new InstantDt();
    }
    return myPublished;
  }
View Full Code Here

    return myTitle;
  }

  public InstantDt getUpdated() {
    if (myUpdated == null) {
      myUpdated = new InstantDt();
    }
    return myUpdated;
  }
View Full Code Here

    return myLinkSelf;
  }

  public InstantDt getPublished() {
    if (myPublished == null) {
      myPublished = new InstantDt();
    }
    return myPublished;
  }
View Full Code Here

    return myTotalResults;
  }

  public InstantDt getUpdated() {
    if (myUpdated == null) {
      myUpdated = new InstantDt();
    }
    return myUpdated;
  }
View Full Code Here

TOP

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

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.