Unit

enum Unit : Enum<Temperature.Unit>

The unit of temperature's value.

Entries

Link copied to clipboard
FAHRENHEIT("℉", LinearUnitConverter(5_000_000_000.0 / 9.0, (-32 * 5_000_000_000.0) / 9.0 + 273_150_000_000.0))

Describes a temperature in degrees Fahrenheit.

Link copied to clipboard
CELSIUS("℃", LinearUnitConverter(1_000_000_000.0, 273_150_000_000.0))

Describes a temperature in degrees Celsius.

Inherited properties

Link copied to clipboard
val name: String
Link copied to clipboard
val ordinal: Int