Package ca.uhn.fhir.model.primitive

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


     *
     * </p>
   */
  public InstantDt getStart() { 
    if (myStart == null) {
      myStart = new InstantDt();
    }
    return myStart;
  }
View Full Code Here


     * <b>Definition:</b>
     *
     * </p>
   */
  public Slot setStartWithMillisPrecision( Date theDate) {
    myStart = new InstantDt(theDate);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Slot setStart( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myStart = new InstantDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public InstantDt getEnd() { 
    if (myEnd == null) {
      myEnd = new InstantDt();
    }
    return myEnd;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Slot setEndWithMillisPrecision( Date theDate) {
    myEnd = new InstantDt(theDate);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Slot setEnd( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myEnd = new InstantDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     *
     * </p>
   */
  public InstantDt getIssued() { 
    if (myIssued == null) {
      myIssued = new InstantDt();
    }
    return myIssued;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Observation setIssuedWithMillisPrecision( Date theDate) {
    myIssued = new InstantDt(theDate);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Observation setIssued( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myIssued = new InstantDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public InstantDt addInstantErr() {
    InstantDt newType = new InstantDt();
    getInstantErr().add(newType);
    return newType;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.model.primitive.InstantDt

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.