972973974975976977978979
* <b>Definition:</b> * When the document reference was created * </p> */ public DocumentReference setIndexed( Date theDate, TemporalPrecisionEnum thePrecision) { myIndexed = new InstantDt(theDate, thePrecision); return this; }
174175176177178179180181182
* The point in time that the values are reported * </p> */ public InstantDt getInstant() { if (myInstant == null) { myInstant = new InstantDt(); } return myInstant; }
201202203204205206207208
* <b>Definition:</b> * The point in time that the values are reported * </p> */ public DeviceObservationReport setInstantWithMillisPrecision( Date theDate) { myInstant = new InstantDt(theDate); return this; }
214215216217218219220221
* <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; }
116711681169117011711172117311741175
* <b>Definition:</b> * * </p> */ public InstantDt addInstantCorr() { InstantDt newType = new InstantDt(); getInstantCorr().add(newType); return newType; }
12011202120312041205120612071208
*/ public Test addInstantCorr( Date theDate) { if (myInstantCorr == null) { myInstantCorr = new java.util.ArrayList<InstantDt>(); } myInstantCorr.add(new InstantDt(theDate)); return this; }
12191220122112221223122412251226
*/ public Test addInstantCorr( Date theDate, TemporalPrecisionEnum thePrecision) { if (myInstantCorr == null) { myInstantCorr = new java.util.ArrayList<InstantDt>(); } myInstantCorr.add(new InstantDt(theDate, thePrecision)); return this; }
665666667668669670671672673
* The time when the event occurred on the source * </p> */ public InstantDt getDateTime() { if (myDateTime == null) { myDateTime = new InstantDt(); } return myDateTime; }
692693694695696697698699
* <b>Definition:</b> * The time when the event occurred on the source * </p> */ public Event setDateTimeWithMillisPrecision( Date theDate) { myDateTime = new InstantDt(theDate); return this; }
705706707708709710711712
* <b>Definition:</b> * The time when the event occurred on the source * </p> */ public Event setDateTime( Date theDate, TemporalPrecisionEnum thePrecision) { myDateTime = new InstantDt(theDate, thePrecision); return this; }