Examples of DateDt


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

     * <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

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

     * The date of birth of the PolicyHolder
     * </p>
   */
  public DateDt getBirthdate() { 
    if (myBirthdate == null) {
      myBirthdate = new DateDt();
    }
    return myBirthdate;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The date of birth of the PolicyHolder
     * </p>
   */
  public Subscriber setBirthdate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myBirthdate = new DateDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * The date of birth of the PolicyHolder
     * </p>
   */
  public Subscriber setBirthdateWithDayPrecision( Date theDate) {
    myBirthdate = new DateDt(theDate);
    return this;
  }
View Full Code Here

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

     * Estimated or actual date the condition/problem/diagnosis was first detected/suspected
     * </p>
   */
  public DateDt getDateAsserted() { 
    if (myDateAsserted == null) {
      myDateAsserted = new DateDt();
    }
    return myDateAsserted;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * Estimated or actual date the condition/problem/diagnosis was first detected/suspected
     * </p>
   */
  public Condition setDateAsserted( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDateAsserted = new DateDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * Estimated or actual date the condition/problem/diagnosis was first detected/suspected
     * </p>
   */
  public Condition setDateAssertedWithDayPrecision( Date theDate) {
    myDateAsserted = new DateDt(theDate);
    return this;
  }
View Full Code Here

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

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

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

     * <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

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

     * <b>Definition:</b>
     * Date vaccine batch expires
     * </p>
   */
  public Immunization setExpirationDateWithDayPrecision( Date theDate) {
    myExpirationDate = new DateDt(theDate);
    return this;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.