Package ca.uhn.fhir.model.primitive

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


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


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

     * Date vaccine administered or was to be administered
     * </p>
   */
  public DateTimeDt getDate() { 
    if (myDate == null) {
      myDate = new DateTimeDt();
    }
    return myDate;
  }
View Full Code Here

     * Date and Time the study took place
     * </p>
   */
  public DateTimeDt getDateTime() { 
    if (myDateTime == null) {
      myDateTime = new DateTimeDt();
    }
    return myDateTime;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date and Time the study took place
     * </p>
   */
  public ImagingStudy setDateTime( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDateTime = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date and Time the study took place
     * </p>
   */
  public ImagingStudy setDateTimeWithSecondsPrecision( Date theDate) {
    myDateTime = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

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

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

     * <b>Definition:</b>
     *
     * </p>
   */
  public Series setDateTimeWithSecondsPrecision( Date theDate) {
    myDateTime = 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.