Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * Date when result of the microarray is updated
     * </p>
   */
  public Microarray setDateWithDayPrecision( Date theDate) {
    myDate = new DateDt(theDate);
    return this;
  }
View Full Code Here


     * <b>Definition:</b>
     * Date when result of the microarray is updated
     * </p>
   */
  public Microarray setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * Date vaccine batch expires
     * </p>
   */
  public DateDt getExpirationDate() { 
    if (myExpirationDate == null) {
      myExpirationDate = new DateDt();
    }
    return myExpirationDate;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date vaccine batch expires
     * </p>
   */
  public Immunization setExpirationDateWithDayPrecision( Date theDate) {
    myExpirationDate = new DateDt(theDate);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date vaccine batch expires
     * </p>
   */
  public Immunization setExpirationDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myExpirationDate = new DateDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * Identifies when the resource was first created
     * </p>
   */
  public DateDt getCreated() { 
    if (myCreated == null) {
      myCreated = new DateDt();
    }
    return myCreated;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies when the resource was first created
     * </p>
   */
  public Other setCreatedWithDayPrecision( Date theDate) {
    myCreated = new DateDt(theDate);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies when the resource was first created
     * </p>
   */
  public Other setCreated( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myCreated = new DateDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * Identifies when the resource was first created
     * </p>
   */
  public DateDt getCreated() { 
    if (myCreated == null) {
      myCreated = new DateDt();
    }
    return myCreated;
  }
View Full Code Here

     * <b>Definition:</b>
     * Identifies when the resource was first created
     * </p>
   */
  public Other setCreatedWithDayPrecision( Date theDate) {
    myCreated = new DateDt(theDate);
    return this;
  }
View Full Code Here

TOP

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

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.