class TemperatureDelta : Comparable


Represents a unit of TemperatureDelta difference. Supported units:

Summary

Public companion functions

TemperatureDelta
celsius(value: Double)

Creates TemperatureDelta with the specified value in Celsius degrees.

TemperatureDelta

Creates TemperatureDelta with the specified value in Fahrenheit degrees.

Public functions

open operator Int
open operator Boolean
equals(other: Any?)
open Int
open String

Public properties

Double

Returns the TemperatureDelta in Celsius degrees.

Double

Returns the TemperatureDelta in Fahrenheit degrees.

Public companion functions

celsius

Added in 1.1.0-alpha09
fun celsius(value: Double): TemperatureDelta

Creates TemperatureDelta with the specified value in Celsius degrees.

fahrenheit

Added in 1.1.0-alpha09
fun fahrenheit(value: Double): TemperatureDelta

Creates TemperatureDelta with the specified value in Fahrenheit degrees.

Public functions

compareTo

Added in 1.1.0-alpha09
open operator fun compareTo(other: TemperatureDelta): Int

equals

open operator fun equals(other: Any?): Boolean

hashCode

open fun hashCode(): Int

toString

open fun toString(): String

Public properties

inCelsius

Added in 1.1.0-alpha09
val inCelsiusDouble

Returns the TemperatureDelta in Celsius degrees.

inFahrenheit

Added in 1.1.0-alpha09
val inFahrenheitDouble

Returns the TemperatureDelta in Fahrenheit degrees.