TimeZoneInfo

data class TimeZoneInfo(val timeZone: Long, val daylight: Int, val stdName: String, val dstName: String)(source)

Time conversion information from :

  • extern char \*tzname\[2];

  • extern long timezone;

  • extern int daylight

Parameters

timeZone

Timezone offset, Seconds East of UTC

daylight

Non-zero if the timezone has daylight saving time rules

stdName

Timezone name when daylight saving time is not in effect

dstName

Timezone name when daylight saving time is in effect

Constructors

Link copied to clipboard
constructor(timeZone: Long, daylight: Int, stdName: String, dstName: String)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard