![]() | Sub Contract Resource Type Enum |
![]() | Enumération des types de ressource de sous-traitance |
| Item | SPF | XML | Change | Description | IFC2x3 to IFC4 |
|---|---|---|---|---|
| IfcSubContractResourceTypeEnum | ADDED |
This enumeration is used to identify the primary purpose of a subcontract resource.
HISTORY New enumeration in IFC4.
| Constant | Description |
|---|---|
| PURCHASE | Furnishing or supplying products. |
| WORK | Performing work onsite. |
| USERDEFINED | User-defined resource. |
| NOTDEFINED | Undefined resource. |
<xs:simpleType name="IfcSubContractResourceTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="purchase"/>
<xs:enumeration value="work"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcSubContractResourceTypeEnum = ENUMERATION OF (
PURCHASE,
WORK,
USERDEFINED,
NOTDEFINED);
END_TYPE;