![]()  | Cable Carrier Fitting Type Enum | 
![]()  | Enumération des types de raccord de chemin de cable | 
The IfcCableCarrierFittingTypeEnum defines the range of different types of cable carrier fitting that can be specified.
HISTORY New type in IFC2x2.
| Constant | Description | 
|---|---|
| BEND | A fitting that changes the route of the cable carrier. | 
| CROSS | A fitting at which two branches are taken from the main route of the cable carrier simultaneously. | 
| REDUCER | A fitting that changes the physical size of the main route of the cable carrier. | 
| TEE | A fitting at which a branch is taken from the main route of the cable carrier. | 
| USERDEFINED | User-defined type. | 
| NOTDEFINED | Undefined type. | 
 <xs:simpleType name="IfcCableCarrierFittingTypeEnum">
  <xs:restriction base="xs:string">
   <xs:enumeration value="bend"/>
   <xs:enumeration value="cross"/>
   <xs:enumeration value="reducer"/>
   <xs:enumeration value="tee"/>
   <xs:enumeration value="userdefined"/>
   <xs:enumeration value="notdefined"/>
  </xs:restriction>
 </xs:simpleType>
TYPE IfcCableCarrierFittingTypeEnum = ENUMERATION OF (
 BEND, 
 CROSS, 
 REDUCER, 
 TEE, 
 USERDEFINED, 
 NOTDEFINED);
END_TYPE;