TemperatureUnit
Short summary
This enumeration contains common temperature scales.
Underlying type: default
Components
| Name | Value | Comment |
|---|---|---|
| KELVIN | 0 | - |
| DEGREE_CELSIUS | implicit | - |
| DEGREE_FAHRENHEIT | implicit | - |
Code
Declaration
{attribute 'qualified_only'}
{attribute 'to_string'}
TYPE TemperatureUnit :
(
KELVIN := 0,
DEGREE_CELSIUS,
DEGREE_FAHRENHEIT
);
END_TYPE