toString() method

Format

java.lang.String toString()

Explanation

Converts the time information in the tuple to a string and acquires it.

Parameters

None.

Exceptions

None.

Return value

String expression obtained by converting the time in the tuple to the format shown below (java.lang.String type. [Figure] indicates a single-byte space)

aaa[Figure]bbb[Figure]cc[Figure]dd:ee:ff[Figure]ggg[Figure]hhhh[timeMillis:iii]

The following table describes the output.

Output itemDescriptionOutput format (range)
aaaDay of the weekSun, Mon, Tue, Wed, Thu, Fri, or Sat
bbbMonthJan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, or Dec
ccDayA two-digit decimal number (01 to 31)
ddHourA two-digit decimal number (00 to 23)
eeMinuteA two-digit decimal number (00 to 59)
ffSecondA two-digit decimal number (00 to 59)
gggTime zoneThe time zone if specified.
Spaces if no time zone is specified
hhhhYearA four-digit decimal number
iiiThe time (in milliseconds) kept by the objectThe time (in milliseconds) from the object

An output example follows:

"Thu Jan 01 09:00:01 GMT 1970[timeMillis:1234]"