Navigation
Navigate Navigate Navigate Navigate Navigate Navigate

IfcBenchmarkEnum

Definition from IAI: An IfcBenchmarkEnum is an enumeration used to identify the logical comparators that can be applied in conjunction with constraint values.

HISTORY: New type in IFC Release 2.0

Enumeration

Value Definition
GREATERTHAN Identifies that a value must be greater than that set by the constraint.
GREATERTHANOREQUALTO Identifies that a value must be either greater than or equal to that set by the constraint.
LESSTHAN Identifies that a value must be less than that set by the constraint.
LESSTHANOREQUALTO Identifies that a value must be either less than or equal to that set by the constraint.
EQUALTO Identifies that a value must be equal to that set by the constraint.
NOTEQUALTO Identifies that a value must be not equal to that set by the constraint.

EXPRESS specification:

TYPE IfcBenchmarkEnum = ENUMERATION OF
( GREATERTHAN,
GREATERTHANOREQUALTO,
LESSTHAN,
LESSTHANOREQUALTO,
EQUALTO,
NOTEQUALTO);
END_TYPE;