zoukankan      html  css  js  c++  java
  • IfcBenchmarkEnum

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

    HISTORY  New enumeration in IFC2.0
    IFC4 CHANGE  Extended to include comparators for item-set and set-item comparisons: INCLUDES, NOTINCLUDES, INCLUDEDIN and NOTINCLUDEDIN, to test if an individual item is a member of a given aggregation, or if an aggregation has a given individual item as a member.

    Enumeration definition

    ConstantDescription
    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.
    INCLUDES Identifies that an aggregation (set, list or table) must include the value (individual item) set by the constraint.
    NOTINCLUDES Identifies that an aggregation (set, list or table) must not include the value (individual item) set by the constraint.
    INCLUDEDIN Identifies that a value (individual item) must be included in the aggregation (set, list or table) set by the constraint.
    NOTINCLUDEDIN Identifies that a value (individual item) must not be included in the aggregation (set, list or table) set by the constraint.
     

    EXPRESS Specification

    TYPE IfcBenchmarkEnum = ENUMERATION OF (
     GREATERTHAN,
     GREATERTHANOREQUALTO,
     LESSTHAN,
     LESSTHANOREQUALTO,
     EQUALTO,
     NOTEQUALTO,
     INCLUDES,
     NOTINCLUDES,
     INCLUDEDIN,
     NOTINCLUDEDIN);
    END_TYPE;
    View Code

    ##################################

    QQ 3087438119
  • 相关阅读:
    VS Code 调试 Angular 和 TypeScript 的配置
    如何在 ASP.NET Core 中发送邮件
    十二个 ASP.NET Core 例子
    ASP.NET Core MVC 源码学习:详解 Action 的激活
    10 分钟学会Linux常用 bash命令
    ASP.NET Core MVC 源码学习:详解 Action 的匹配
    ASP.NET Core MVC 源码学习:MVC 启动流程详解
    ASP.NET Core MVC 源码学习:Routing 路由
    多叉树查找
    《转》Ubuntu 12.04常用的快捷键
  • 原文地址:https://www.cnblogs.com/herd/p/14793434.html
Copyright © 2011-2022 走看看