Package ca.uhn.fhir.model.primitive

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


    return myTotalResults;
  }

  public InstantDt getUpdated() {
    if (myUpdated == null) {
      myUpdated = new InstantDt();
    }
    return myUpdated;
  }
View Full Code Here


     * When the document reference was created
     * </p>
   */
  public InstantDt getIndexed() { 
    if (myIndexed == null) {
      myIndexed = new InstantDt();
    }
    return myIndexed;
  }
View Full Code Here

     * <b>Definition:</b>
     * When the document reference was created
     * </p>
   */
  public DocumentReference setIndexed( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myIndexed = new InstantDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     * When the document reference was created
     * </p>
   */
  public DocumentReference setIndexedWithMillisPrecision( Date theDate) {
    myIndexed = new InstantDt(theDate);
    return this;
  }
View Full Code Here

     * The point in time that the values are reported
     * </p>
   */
  public InstantDt getInstant() { 
    if (myInstant == null) {
      myInstant = new InstantDt();
    }
    return myInstant;
  }
View Full Code Here

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

    @Override
    public void attributeValue(String theName, String theValue) throws DataFormatException {
      if ("ref".equals(theName)) {
        getEntry().setId(new IdDt(theValue));
      } else if ("when".equals(theName)) {
        getEntry().setDeleted(new InstantDt(theValue));
      }
    }
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 Appointment setStart( Date theDate,  TemporalPrecisionEnum thePrecision) {
    myStart = new InstantDt(theDate, thePrecision);
    return this;
  }
View Full Code Here

     * <b>Definition:</b>
     *
     * </p>
   */
  public Appointment setStartWithMillisPrecision( Date theDate) {
    myStart = new InstantDt(theDate);
    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.