SimpleTime

data class SimpleTime(val hour: Int, val minute: Int, val second: Int, val nanosecond: Int)(source)

Represents a 24Hrs format time of day (hour, minute, second, nanosecond). Strictly adjusted to the Asia/Kathmandu TimeZone.

Constructors

Link copied to clipboard
constructor(hour: Int, minute: Int, second: Int, nanosecond: Int)

Properties

Link copied to clipboard
val hour: Int

Hour of the day (0-23).

Link copied to clipboard
val minute: Int

Minute of the hour (0-59).

Link copied to clipboard

Nanosecond of the second (0-999,999,999).

Link copied to clipboard
val second: Int

Second of the minute (0-59).