Class BirtDuration
The BirtDuration class provides functions to get parts of time periods, or durations, used in XML documents. The durations are specified in the following form:
PnYnMnDTnHnMnS
n nY indicates the number of years
n nM indicates the number of months
n nD indicates the number of days
n T indicates the start of a time section (required if the duration includes hours, minutes, or seconds)
n nH indicates the number of hours
n nM indicates the number of minutes
n nS indicates the number of secondsFor example, the following value indicates a duration of 2 years, 3 months, and 5 days:
The following value indicates a duration of 10 hours:
The BirtDuration class is static. The application cannot create instances of the class.
BirtDuration.day
This function returns the days value of a given duration.
A duration from which to get the days value.
A number that represents the days value of the specified duration.
The following examples show the day values returned for specific durations:
BirtDuration.day( "P5Y2M" ) // returns 0BirtDuration.hour
This function returns the hours value of a given duration.
A duration from which to get the hours value.
A number that represents the hours value of the specified duration.
The following examples show the hour values returned for specific durations:
BirtDuration.isLongerThan
This function tests if a duration is longer than another duration. Sometimes the order relationship between certain durations cannot be determined, for example, one month (P1M) and 30 days (P30D), or one year (P1Y) and 365 days (P365D). In cases such as these, the function returns false.
The first duration to use in the comparison.
The second duration to use in the comparison.
True if the first duration is longer than the second duration; returns false otherwise.
The following expressions compare the lengths of specific durations:
BirtDuration.isShorterThan
This function tests if a duration is shorter than another duration. Sometimes the order relationship between certain durations cannot be determined, for example, one month (P1M) and 30 days (P30D), or one year (P1Y) and 365 days (P365D). In cases such as these, the function returns false.
The first duration to use in the comparison.
The second duration to use in the comparison.
True if the first duration is shorter than the second duration; returns false otherwise.
The following expressions compare the lengths of specific durations:
BirtDuration.minute
This function returns the minutes value of a given duration.
A duration from which to get the minutes value.
A number that represents the minutes value of the specified duration.
The following examples show the minutes values returned for specific durations:
BirtDuration.month
This function returns the months value of a given duration.
A duration from which to get the months value.
A number that represents the months value of the specified duration.
The following examples show the month values returned for specific durations:
BirtDuration.second
This function returns the seconds value of a given duration.
A duration from which to get the seconds value.
A number that represents the seconds value of the specified duration.
The following examples show the seconds values returned for specific durations:
BirtDuration.timeInMills
This function returns the number of milliseconds in a given duration, from a specified start date. The number of milliseconds in a duration can change depending on the start date. For example, a duration of one month can be 28, 29, 30, or 31 days, depending on the start date. If the start date is January 1, the function calculates the milliseconds between January 1 and February 1 (excluding February 1), which equals 2678400000 milliseconds or 31 days. If the start date is February 1, 2009 (a leap year), the function calculates the milliseconds between February 1 and March 1, which equals 2505600000 milliseconds or 29 days.
A duration whose length in milliseconds to get.
A date object that represents the start date.
The number of milliseconds in the specified duration.
The following examples show the number of milliseconds returned for specific durations and start dates:
BirtDuration.timeInMills( "P1Y3M10D" , "2009-01-01" ) // returns 40172400000BirtDuration.timeInMills( "P1Y3M10D" , "2008-01-01" ) // returns 40258800000BirtDuration.timeInMills( "PT6H45M20S" , "2009-01-01" ) // returns 24320000BirtDuration.year
This function returns the year value of a given duration.
A duration from which to get the year value.
A number that represents the year value of the specified duration.
The following examples show the year values returned for specific durations:
(c) Copyright Actuate Corporation 2009 |