DurationUnit
Short summary
This enumeration contains common physical time units.
Underlying type: default
Components
| Name | Value | Comment |
|---|---|---|
| SECONDS | 0 | - |
| MINUTE | implicit | - |
| HOUR | implicit | - |
| DAY | implicit | - |
| WEEK | implicit | - |
Code
Declaration
{attribute 'qualified_only'}
{attribute 'to_string'}
TYPE DurationUnit :
(
SECONDS := 0,
MINUTE,
HOUR,
DAY,
WEEK
);
END_TYPE