Companion

Functions

Link copied to clipboard
fun convert(    value: Double,     sourceUnit: DurationUnit,     targetUnit: DurationUnit): Double

Converts the given time duration value expressed in the specified sourceUnit into the specified targetUnit.

Link copied to clipboard
fun days(value: Double): Duration
fun days(value: Int): Duration
fun days(value: Long): Duration

Returns a Duration representing the specified value number of days.

Since Kotlin 1.5
Link copied to clipboard
fun hours(value: Double): Duration
fun hours(value: Int): Duration
fun hours(value: Long): Duration

Returns a Duration representing the specified value number of hours.

Since Kotlin 1.5
Link copied to clipboard

Returns a Duration representing the specified value number of microseconds.

Since Kotlin 1.5
Link copied to clipboard

Returns a Duration representing the specified value number of milliseconds.

Since Kotlin 1.5
Link copied to clipboard
fun minutes(value: Double): Duration
fun minutes(value: Int): Duration
fun minutes(value: Long): Duration

Returns a Duration representing the specified value number of minutes.

Since Kotlin 1.5
Link copied to clipboard
fun nanoseconds(value: Int): Duration

Returns a Duration representing the specified value number of nanoseconds.

Since Kotlin 1.5
Link copied to clipboard
fun seconds(value: Double): Duration
fun seconds(value: Int): Duration
fun seconds(value: Long): Duration

Returns a Duration representing the specified value number of seconds.

Since Kotlin 1.5

Properties

Link copied to clipboard

The duration whose value is positive infinity. It is useful for representing timeouts that should never expire.

Link copied to clipboard

The duration equal to exactly 0 seconds.