Package ca.uhn.fhir.model.primitive

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


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


     * The date when the enclosed suite of services were performed or completed
     * </p>
   */
  public DateDt getServicedate() { 
    if (myServicedate == null) {
      myServicedate = new DateDt();
    }
    return myServicedate;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date when the enclosed suite of services were performed or completed
     * </p>
   */
  public Claim setServicedate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myServicedate = new DateDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date when the enclosed suite of services were performed or completed
     * </p>
   */
  public Claim setServicedateWithDayPrecision( Date theDate) {
    myServicedate = new DateDt(theDate);
    return this;
  }
View Full Code Here

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

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

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

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

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

     * <b>Definition:</b>
     * The date of birth of the PolicyHolder
     * </p>
   */
  public CoverageSubscriber setBirthdateWithDayPrecision( Date theDate) {
    myBirthdate = 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.