![]()  | Junction Box Type Enum | 
![]()  | Enumération des types de boites de jonction | 
| Item | SPF | XML | Change | Description | IFC2x3 to IFC4 | 
|---|---|---|---|---|
| IfcJunctionBoxTypeEnum | ||||
| DATA | ADDED | |||
| POWER | ADDED | 
The IfcJunctionBoxTypeEnum defines different types of junction boxes.
HISTORY New type in IFC2x2. Values added in IFC4.
| Constant | Description | 
|---|---|
| DATA | Contains cables, outlets, and/or switches for communications use. | 
| POWER | Contains cables, outlets, and/or switches for electrical power. | 
| USERDEFINED | User-defined type. | 
| NOTDEFINED | Undefined type. | 
 <xs:simpleType name="IfcJunctionBoxTypeEnum">
  <xs:restriction base="xs:string">
   <xs:enumeration value="data"/>
   <xs:enumeration value="power"/>
   <xs:enumeration value="userdefined"/>
   <xs:enumeration value="notdefined"/>
  </xs:restriction>
 </xs:simpleType>
TYPE IfcJunctionBoxTypeEnum = ENUMERATION OF (
 DATA, 
 POWER, 
 USERDEFINED, 
 NOTDEFINED);
END_TYPE;