|
Options |
Name |
Purpose |
|
|
LOGICAL Equals (Object)
|
|
|
|
DATE ToABLDateFromISO (character)
|
/** Converts an ISO date into an ABL DATE. The ISO-DATE()
requires the session's date format to be YMD before
performing the conversion; this method wraps that.
@param character An ISO date
@return datetime-tz The date value to convert. */
|
|
|
DATETIME ToABLDateTimeFromISO (character)
|
/** Converts an ISO date into an ABL DATETIME. The ISO-DATE()
requires the session's date format to be YMD before
performing the conversion; this method wraps that.
@param character An ISO date
@return datetime The date value to convert. */
|
|
|
DATETIME-TZ ToABLDateTimeTzFromHttp (character)
|
/** Converts an HTTP 'sane date' into an ABL DATETIME-TZ. The HTTP date is
defined at http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3
One of the following formats will be used:
Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123
Sunday, 06-Nov-94 08:49:37 GMT ; RFC 850, obsoleted by RFC 1036
Sun Nov 6 08:49:37 1994 ; ANSI C's asctime() format
@param character An ISO date
@return datetime-tz The date value to convert. */
|
|
|
DATETIME-TZ ToABLDateTimeTzFromISO (character)
|
/** Converts an ISO date into an ABL DATETIME-TZ. The ISO-DATE()
requires the session's date format to be YMD before
performing the conversion; this method wraps that.
@param character An ISO date
@return datetime-tz The date value to convert. */
|
|
|
DATE ToDate ()
|
/* Converts the current TimeStamp to an ABL date value
@return date The datetime-tz represented by this TimeStamp */
|
|
|
DATETIME ToDateTime ()
|
/* Converts the current TimeStamp to an ABL datetime value
@return datetime The datetime represented by this TimeStamp */
|
|
|
DATETIME-TZ ToDateTimeTz ()
|
/* Converts the current TimeStamp to an ABL datetime-tz value
@return datetime-tz The datetime-tz represented by this TimeStamp */
|
|
|
CHARACTER ToHttpDate ()
|
/** Converts this TimeStamp into an HTTP 'sane date', according to RFC 822, as
defined at http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3
One of the following formats will be used:
Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123
@return datetime-tz The date value to convert. */
|
|
|
CHARACTER ToHttpDateFromABL (datetime-tz)
|
/** Converts an ABL date into an HTTP 'sane date', according to RFC 822, as
defined at http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3
One of the following formats will be used:
Sun, 06 Nov 1994 08:49:37 GMT ; RFC 822, updated by RFC 1123
@param character An ISO date
@return datetime-tz The date value to convert. */
|
|
|
CHARACTER ToISODate ()
|
/** Converts an ABL datetime into a correct ISO date.
@return character An ISO date. */
|
|
|
CHARACTER ToISODateFromABL (date)
|
/** Converts an ABL datetime into a correct ISO date.
@param date The date value to convert
@return character An ISO date. */
|
|
|
CHARACTER ToISODateFromABL (datetime)
|
/** Converts an ABL datetime into a correct ISO date.
@param datetime The date value to convert
@return character An ISO date. */
|
|
|
CHARACTER ToISODateFromABL (datetime-tz)
|
/** Converts an ABL datetime into a correct ISO date.
@param datetime-tz The date value to convert
@return character An ISO date. */
|
|
|
INTEGER ToTime ()
|
/* Returns the current TimeStamp's time in milliseconds since midnight.
@return integer The milliseconds represented by this TimeStamp */
|