Arithmetic Operator Enum | |
Énumération d'opérateur arithmétique |
IfcArithmeticOperatorEnum specifies the form of arithmetic operation implied by the relationship.
HISTORY New enumeration in IFC2x2.
Constant | Description |
---|---|
ADD | |
DIVIDE | |
MULTIPLY | |
SUBTRACT |
<xs:simpleType name="IfcArithmeticOperatorEnum">
<xs:restriction base="xs:string">
<xs:enumeration value="add"/>
<xs:enumeration value="divide"/>
<xs:enumeration value="multiply"/>
<xs:enumeration value="subtract"/>
</xs:restriction>
</xs:simpleType>
TYPE IfcArithmeticOperatorEnum = ENUMERATION OF (
ADD,
DIVIDE,
MULTIPLY,
SUBTRACT);
END_TYPE;