Package ca.uhn.fhir.model.primitive

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


     * Date when result of the analysis is updated
     * </p>
   */
  public DateDt getDate() { 
    if (myDate == null) {
      myDate = new DateDt();
    }
    return myDate;
  }
View Full Code Here


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

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

     * Date when the result of the lab is uploaded
     * </p>
   */
  public DateDt getDate() { 
    if (myDate == null) {
      myDate = new DateDt();
    }
    return myDate;
  }
View Full Code Here

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

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

     * Date when result of the analysis is updated
     * </p>
   */
  public DateDt getDate() { 
    if (myDate == null) {
      myDate = new DateDt();
    }
    return myDate;
  }
View Full Code Here

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

     * <b>Definition:</b>
     * Date when result of the analysis is updated
     * </p>
   */
  public GeneticAnalysis setDateWithDayPrecision( Date theDate) {
    myDate = 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

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.