Class JulianDate
Extends
IDate.
Construct a new date object for the Julian Calendar. The constructor can be called
with a parameter object that contains any of the following properties:
- unixtime - sets the time of this instance according to the given
unix time. Unix time is the number of milliseconds since midnight on Jan 1, 1970 (Gregorian).
- julianday - the Julian Day to set into this date
- year - any integer except 0. Years go from -1 (BCE) to 1 (CE), skipping the zero year which doesn't exist in the Julian calendar
- month - 1 to 12, where 1 means January, 2 means February, etc.
- day - 1 to 31
- hour - 0 to 23. A formatter is used to display 12 hour clocks, but this representation is always done with an unambiguous 24 hour representation
- minute - 0 to 59
- second - 0 to 59
- millisecond - 0 to 999
- locale - the TimeZone instance or time zone name as a string of this julian date. The date/time is kept in the local time. The time zone is used later if this date is formatted according to a different time zone and the difference has to be calculated, or when the date format has a time zone component in it.
- timezone - the time zone of this instance. If the time zone is not given, it can be inferred from this locale. For locales that span multiple time zones, the one with the largest population is chosen as the one that represents the locale.
- date - use the given intrinsic Javascript date to initialize this one.
If called with another Julian date argument, the date components of the given date are copied into the current one.
If the constructor is called with no arguments at all or if none of the properties listed above from unixtime through millisecond are present, then the date components are filled in with the current date at the time of instantiation. Note that if you do not give the time zone when defaulting to the current time and the time zone for all of ilib was not set with ilib.setTimeZone(), then the time zone will default to UTC ("Universal Time, Coordinated" or "Greenwich Mean Time").
Defined in: JulianDate.js.
Constructor Attributes | Constructor Name and Description |
---|---|
JulianDate(params)
|
Field Attributes | Field Name and Description |
---|---|
The day of the month.
|
|
The day of the year.
|
|
The hour of the day.
|
|
The millisecond of the second.
|
|
The minute of the hours.
|
|
The month number, ranging from 1 (January) to 12 (December).
|
|
The second of the minute.
|
|
Year in the Julian calendar.
|
Method Attributes | Method Name and Description |
---|---|
Return the name of the calendar that governs this date.
|
|
Return the day of the week of this date.
|
|
newRd(params)
Return a new RD for this date type using the given params.
|
- Parameters:
- {Object=} params
- parameters that govern the settings and behaviour of this Julian date
- Returns:
- {string} a string giving the name of the calendar
- Returns:
- {number} the day of the week
- Parameters:
- {Object=} params
- the parameters used to create this rata die instance
- Returns:
- {RataDie} the new RD instance for the given params