You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Model Documentation

The WhereClauseCompoundExpression class is used to define compound expressions in the compoundExpression attribute of the WhereClause class (and any of its specializations).

Error rendering macro 'excerpt-include'

No link could be created for 'ARSP:Class Diagram: WhereClauseCompoundExpression'.

There are 3 specializations of the WhereClauseCompoundExpression class:

  • The CompoundSetExpression specialization is used to define compound expressions in the AnalysisSet specialization of the WhereClause class.
  • The CompoundSubsetExpression specialization is used to define compound expressions in the DataSubset specialization of the WhereClause class, as described in the DataSubset section.
  • The CompoundGroupExpression specialization class is used to define compound expressions in the Group specialization of the WhereClause class, as described in the GroupingFactor section.

In each instance of the WhereClauseCompoundExpression class (or 1 of its specializations):

  • The logicalOperator attribute contains a value from the ExpressionLogicalOperatorEnum enumeration:
    • "AND" or "OR" are used in compound expressions that combine 2 or more simple conditions or other compound expressions.
    • "NOT" is used in compound expressions that negate another (single) compound expression.
  • The whereClauses attribute contains:
    • 2 or more instances of the WhereClause class or 1 of its specializations in a compound expression that combines selection criteria, or
    • A single instance of the WhereClause class or 1 of its specializations in a compound expression that negates another compound expression.

The representation of the instance(s) of the WhereClause class (or its specializations) in the whereClauses attribute depends which type of WhereClauseCompoundExpression is being used. In instances of:

    • Either the WhereClauseCompoundExpression class itself (which is used in instances of the WhereClause class) or the CompoundSubsetExpression specialization (which is used in the DataSubset specialization of the WhereClause class), the whereClauses attribute contains a specification of the compound expression represented as an instance of the WhereClause class (i.e., with values specified for the level and order attributes, and either of the condition or compoundExpression attributes).
    • The CompoundSetExpression specialization (which is used in the AnalysisSet specialization of the WhereClause class), the whereClauses attribute can only contain other instances of the AnalysisSet class referenced by identifier value.
    • The CompoundGroupExpression specialization (which is used in the Group specialization of the WhereClause class), the whereClauses attribute can only contain other instances of the Group class referenced by identifier value.


  • No labels