Package ca.uhn.fhir.model.primitive

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


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


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

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

    b.append("]");
    return b.toString();
  }

  public InstantDt getValueAsInstantDt() {
    return new InstantDt(getValue());
  }
View Full Code Here

     * <b>Definition:</b>
     * The point in time that the values are reported
     * </p>
   */
  public DeviceObservationReport setInstantWithMillisPrecision( Date theDate) {
    myInstant = new InstantDt(theDate);
    return this;
  }
View Full Code Here

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

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

     * <b>Definition:</b>
     *
     * </p>
   */
  public AppointmentResponse setStartWithMillisPrecision( Date theDate) {
    myStart = new InstantDt(theDate);
    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 AppointmentResponse setEnd( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myEnd = new InstantDt(theDate, thePrecision);
    return this;
  }
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.