Package ca.uhn.fhir.model.primitive

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


     * <b>Definition:</b>
     * The date that the list was prepared
     * </p>
   */
  public ListResource setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here


     * <b>Definition:</b>
     * The date that the list was prepared
     * </p>
   */
  public ListResource setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * When this item was added to the list
     * </p>
   */
  public DateTimeDt getDate() { 
    if (myDate == null) {
      myDate = new DateTimeDt();
    }
    return myDate;
  }
View Full Code Here

     * <b>Definition:</b>
     * When this item was added to the list
     * </p>
   */
  public Entry setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * When this item was added to the list
     * </p>
   */
  public Entry setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * The date when the conformance statement was published
     * </p>
   */
  public DateTimeDt getDate() { 
    if (myDate == null) {
      myDate = new DateTimeDt();
    }
    return myDate;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date when the conformance statement was published
     * </p>
   */
  public Conformance setDate( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myDate = new DateTimeDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * The date when the conformance statement was published
     * </p>
   */
  public Conformance setDateWithSecondsPrecision( Date theDate) {
    myDate = new DateTimeDt(theDate);
    return this;
  }
View Full Code Here

     * Time when specimen was received for processing or testing
     * </p>
   */
  public DateTimeDt getReceivedTime() { 
    if (myReceivedTime == null) {
      myReceivedTime = new DateTimeDt();
    }
    return myReceivedTime;
  }
View Full Code Here

     * <b>Definition:</b>
     * Time when specimen was received for processing or testing
     * </p>
   */
  public Specimen setReceivedTime( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myReceivedTime = new DateTimeDt(theDate, thePrecision);
    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.