WeightUnit
Short summary
This enumeration contains common physical weight units. The US units are based on the Avoirdupois measurement system.
Underlying type: default
Components
| Name | Value | Comment |
|---|---|---|
| GRAM | 0 | - |
| TON | implicit | - |
| US_GRAIN | implicit | - |
| US_DRAM | implicit | - |
| US_OUNCE | implicit | - |
| US_POUND | implicit | - |
| US_TON | implicit | - |
Code
Declaration
{attribute 'qualified_only'}
{attribute 'to_string'}
TYPE WeightUnit :
(
GRAM := 0,
TON,
US_GRAIN,
US_DRAM,
US_OUNCE,
US_POUND,
US_TON
);
END_TYPE