Work Schedule Type Enum | |
Enumération des types de tache unitaire de travail |
Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
---|---|---|---|---|
IfcWorkScheduleTypeEnum | ADDED |
An IfcWorkScheduleTypeEnum is an enumeration data type that specifies the types of work schedule from which the relevant control can be selected.
HISTORY Introduced in IFC4. Derived from IfcWorkControlTypeEnum that was introduced in IFC2.0.
Constant | Description |
---|---|
ACTUAL | A control in which actual items undertaken are indicated. |
BASELINE | A control that is a baseline from which changes that are made later can be recognized. |
PLANNED | A control showing planned items. |
USERDEFINED | |
NOTDEFINED |
<xs:simpleType name="IfcWorkScheduleTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="actual"/>
<xs:enumeration value="baseline"/>
<xs:enumeration value="planned"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcWorkScheduleTypeEnum = ENUMERATION OF (
ACTUAL,
BASELINE,
PLANNED,
USERDEFINED,
NOTDEFINED);
END_TYPE;