Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * The date that the value set status was last changed
     * </p>
   */
  public ValueSet setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here


     * The start of the period. The boundary is inclusive.
     * </p>
   */
  public DateTimeDt getStart() { 
    if (myStart == null) {
      myStart = new DateTimeDt();
    }
    return myStart;
  }
View Full Code Here

     * <b>Definition:</b>
     * The start of the period. The boundary is inclusive.
     * </p>
   */
  public PeriodDt setStart( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myStart = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The start of the period. The boundary is inclusive.
     * </p>
   */
  public PeriodDt setStartWithSecondsPrecision( Date theDate) {
    myStart = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * The end of the period. If the end of the period is missing, it means that the period is ongoing
     * </p>
   */
  public DateTimeDt getEnd() { 
    if (myEnd == null) {
      myEnd = new DateTimeDt();
    }
    return myEnd;
  }
View Full Code Here

     * <b>Definition:</b>
     * The end of the period. If the end of the period is missing, it means that the period is ongoing
     * </p>
   */
  public PeriodDt setEnd( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myEnd = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The end of the period. If the end of the period is missing, it means that the period is ongoing
     * </p>
   */
  public PeriodDt setEndWithSecondsPrecision( Date theDate) {
    myEnd = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * Date this version of the software released
     * </p>
   */
  public DateTimeDt getReleaseDate() { 
    if (myReleaseDate == null) {
      myReleaseDate = new DateTimeDt();
    }
    return myReleaseDate;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date this version of the software released
     * </p>
   */
  public Software setReleaseDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myReleaseDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * Date this version of the software released
     * </p>
   */
  public Software setReleaseDateWithSecondsPrecision( Date theDate) {
    myReleaseDate = new DateTimeDt(theDate);
    return this;
  }
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.