Crew Resource Type Enum | |
Énumération des types d'équipe |
Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
---|---|---|---|---|
IfcCrewResourceTypeEnum | ADDED |
This enumeration is used to identify the primary purpose of a crew resource.
HISTORY New enumeration in IFC4.
Constant | Description |
---|---|
OFFICE | A composition of resources performing administration work in an office. |
SITE | A composition of resources performing production work on a construction site. |
USERDEFINED | User-defined resource. |
NOTDEFINED | Undefined resource. |
<xs:simpleType name="IfcCrewResourceTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="office"/>
<xs:enumeration value="site"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcCrewResourceTypeEnum = ENUMERATION OF (
OFFICE,
SITE,
USERDEFINED,
NOTDEFINED);
END_TYPE;