Address Type Enum | |
Énumération des types d'adresses |
This enumeration identifies the logical location of the address.
HISTORY New enumeration in IFC2x.
Constant | Description |
---|---|
OFFICE | An office address. |
SITE | A site address. |
HOME | A home address. |
DISTRIBUTIONPOINT | A postal distribution point address. |
USERDEFINED | A user defined address type to be provided. |
<xs:simpleType name="IfcAddressTypeEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="office"/>
<xs:enumeration value="site"/>
<xs:enumeration value="home"/>
<xs:enumeration value="distributionpoint"/>
<xs:enumeration value="userdefined"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcAddressTypeEnum = ENUMERATION OF (
OFFICE,
SITE,
HOME,
DISTRIBUTIONPOINT,
USERDEFINED);
END_TYPE;