599600601602603604605606607
* * </p> */ public InstantDt getEnd() { if (myEnd == null) { myEnd = new InstantDt(); } return myEnd; }
626627628629630631632633
* <b>Definition:</b> * * </p> */ public Appointment setEnd( Date theDate, TemporalPrecisionEnum thePrecision) { myEnd = new InstantDt(theDate, thePrecision); return this; }
639640641642643644645646
* <b>Definition:</b> * * </p> */ public Appointment setEndWithMillisPrecision( Date theDate) { myEnd = new InstantDt(theDate); return this; }
181182183184185186187
b.append("]"); return b.toString(); } public InstantDt getValueAsInstantDt() { return new InstantDt(getValue()); }
306307308309310311312313
* <b>Definition:</b> * The point in time that the values are reported * </p> */ public DeviceObservationReport setInstantWithMillisPrecision( Date theDate) { myInstant = new InstantDt(theDate); return this; }
622623624625626627628629630
* * </p> */ public InstantDt getStart() { if (myStart == null) { myStart = new InstantDt(); } return myStart; }
649650651652653654655656
* <b>Definition:</b> * * </p> */ public AppointmentResponse setStart( Date theDate, TemporalPrecisionEnum thePrecision) { myStart = new InstantDt(theDate, thePrecision); return this; }
662663664665666667668669
* <b>Definition:</b> * * </p> */ public AppointmentResponse setStartWithMillisPrecision( Date theDate) { myStart = new InstantDt(theDate); return this; }
679680681682683684685686687
706707708709710711712713
* <b>Definition:</b> * * </p> */ public AppointmentResponse setEnd( Date theDate, TemporalPrecisionEnum thePrecision) { myEnd = new InstantDt(theDate, thePrecision); return this; }