Work Plan Type Enum | |
Enumération des types de planning de travail |
Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
---|---|---|---|---|
IfcWorkPlanTypeEnum | ADDED |
An IfcWorkPlanTypeEnum is an enumeration data type that specifies the types of work plan 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 | |
USERDEFINED | |
NOTDEFINED |
<xs:simpleType name="IfcWorkPlanTypeEnum">
<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 IfcWorkPlanTypeEnum = ENUMERATION OF (
ACTUAL,
BASELINE,
PLANNED,
USERDEFINED,
NOTDEFINED);
END_TYPE;