Definition from IAI: Enumeration defining the generic footing type.
HISTORY New type in IFC Release 2x2
ENUMERATION
<xs:simpleType name="IfcFootingTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="footing_beam"/>
<xs:enumeration value="pad_footing"/>
<xs:enumeration value="pile_cap"/>
<xs:enumeration value="strip_footing"/>
<xs:enumeration value="userdefined"/>
<xs:enumeration value="notdefined"/>
</xs:restriction>
</xs:simpleType>
*)
TYPE IfcFootingTypeEnum = ENUMERATION OF (
FOOTING_BEAM,
PAD_FOOTING,
PILE_CAP,
STRIP_FOOTING,
USERDEFINED,
NOTDEFINED);
END_TYPE;
(*