deprecatedclass %ZEN.Report.Display.COSChart.Date
extends %RegisteredObject
property time
as %Double;
milliseconds since 1970
method %OnNew(initvalue As %String)
as %Status
This callback method is invoked by the %New method to
provide notification that a new instance of an object is being created.
If this method returns an error then the object will not be created.
It is passed the arguments provided in the %New call.
When customizing this method, override the arguments with whatever variables and types you expect to receive from %New().
For example, if you're going to call %New, passing 2 arguments, %OnNew's signature could be:
Method %OnNew(dob as %Date = "", name as %Name = "") as %Status
If instead of returning a %Status code this returns an oref and this oref is a subclass of the current
class then this oref will be the one returned to the caller of %New method.
classmethod ParseDate(value, hasTime, format, sep)
Convert a string to a date value.
Handles the following formats:
'T'|'t' => today, T+n t-n
'' => ''
2005-12-20,2005/12/20,2005 12 20
Various date formats supported by COS
Returns either '', -1 (for invalid dates)
or a date string in the form YYYY-MM-DD
(or in the format specified by format and sep)
classmethod createDate(year, month, day)
classmethod createDate1(year, month, day, hours, minutes, seconds, milliseconds, ByRef pStatus)
classmethod createDateFromMS(time)
method dateToString()
method diff(anotherTime As Date)
method getDate()
get day
method getFullYear()
method getHours()
method getMinutes()
method getMonth()
method getSeconds()
method getTime()
return time in milliseconds since the epoch, 1970-01-01
method setDate(dayOfMonth)
set *day* of month of date, returns date in milliseconds since the epoch, 1970-01-01
method setHours(time)
method setMinutes(time)
method setSeconds(time)
method setTime(timeMS)
set time in milliseconds since the epoch, 1970-01-01
classmethod stringToDate(dval As %String)
classmethod zenDateToString(d, hasTime=0, format, sep)
Takes a Date object, converts it to YYYY-MM-DD.
If hasTime, add a time portion to the string.