![]()  | Inventory Type Enum | 
![]()  | Enumération des types d'inventaire | 
IfcInventoryTypeEnum defines the types of inventory that can be defined.
HISTORY New enumeration in IFC2.0.
| Constant | Description | 
|---|---|
| ASSETINVENTORY | A collection of asset instances of type IfcAsset. | 
| SPACEINVENTORY | A collection of space instances of type IfcSpace. | 
| FURNITUREINVENTORY | A collection of furniture instances of type IfcFurnishingElement. | 
| USERDEFINED | User-defined type. | 
| NOTDEFINED | Undefined type. | 
 <xs:simpleType name="IfcInventoryTypeEnum">
  <xs:restriction base="xs:string">
   <xs:enumeration value="assetinventory"/>
   <xs:enumeration value="spaceinventory"/>
   <xs:enumeration value="furnitureinventory"/>
   <xs:enumeration value="userdefined"/>
   <xs:enumeration value="notdefined"/>
  </xs:restriction>
 </xs:simpleType>
TYPE IfcInventoryTypeEnum = ENUMERATION OF (
 ASSETINVENTORY, 
 SPACEINVENTORY, 
 FURNITUREINVENTORY, 
 USERDEFINED, 
 NOTDEFINED);
END_TYPE;