ENTITY coordinated_universal_time_offset
(* SCHEMA integrated_cnc_schema; *)
ENTITY coordinated_universal_time_offset;
hour_offset : INTEGER;
minute_offset : OPTIONAL INTEGER;
sense : ahead_or_behind;
DERIVE
actual_minute_offset : INTEGER := NVL(minute_offset, 0);
WHERE
WR1: (0 <= hour_offset) AND (hour_offset < 24);
WR2: (0 <= actual_minute_offset) AND (actual_minute_offset <= 59);
WR3: NOT (((hour_offset <> 0) OR (actual_minute_offset <> 0)) AND (
sense = exact));
END_ENTITY; -- 10303-41: date_time_schema
Explicit Attributes
Entity coordinated_universal_time_offset has the following local and inherited explicit attributes:
| Attribute | Type | Defined By |
|---|
| hour_offset | INTEGER | coordinated_universal_time_offset |
| minute_offset | INTEGER | coordinated_universal_time_offset |
| sense | ahead_or_behind (ENUM) | coordinated_universal_time_offset |
|
Derived Attributes
Entity coordinated_universal_time_offset has the following local and inherited derived attributes:
| Attribute | Type | Defined By |
|---|
| actual_minute_offset | INTEGER | coordinated_universal_time_offset |
|
Inverse Attributes
No Inverse AttributesSupertypes
No supertypesSubtypes
No subtypesReferenced By
Entity coordinated_universal_time_offset and its supertypes are referenced by the following definitions:
[Top Level Definitions] Generated by STEP ToolsTM EXPRESS to HTML Converter
on 2010-01-12T10:42:17-02:00