Package ca.uhn.fhir.model.primitive

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


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


     * <b>Definition:</b>
     *
     * </p>
   */
  public AppointmentResponse setEnd( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myEnd = new InstantDt(theDate, thePrecision);
    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 setRecordedWithMillisPrecision( Date theDate) {
    myRecorded = new InstantDt(theDate);
    return this;
  }
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

     *
     * </p>
   */
  public InstantDt getTimestamp() { 
    if (myTimestamp == null) {
      myTimestamp = new InstantDt();
    }
    return myTimestamp;
  }
View Full Code Here

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

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

     * When the document reference was created
     * </p>
   */
  public InstantDt getIndexed() { 
    if (myIndexed == null) {
      myIndexed = new InstantDt();
    }
    return myIndexed;
  }
View Full Code Here

     * <b>Definition:</b>
     * When the document reference was created
     * </p>
   */
  public DocumentReference setIndexedWithMillisPrecision( Date theDate) {
    myIndexed = new InstantDt(theDate);
    return this;
  }
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.