ExtendedClockTime

data class ExtendedClockTime(val hour: Int, val minutes: Int = 0) : ExtendedTime(source)

A hour:minutes time as seen on a 48-hour clock. An extended time can be used to denote that a time range extends into the next day, e.g. 18:00-28:00 (open from 18:00 until 4 hours after midnight).

Constructors

Link copied to clipboard
constructor(hour: Int, minutes: Int = 0)

Properties

Link copied to clipboard
val hour: Int
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String