Class: OpenEHR::AQL::Model::NotExpr
- Inherits:
-
Object
- Object
- OpenEHR::AQL::Model::NotExpr
- Defined in:
- lib/openehr/aql/model/where_clause.rb
Overview
whereExpr : ... | NOT whereExpr | ... ;
Instance Attribute Summary collapse
-
#operand ⇒ Object
readonly
Returns the value of attribute operand.
Instance Method Summary collapse
-
#initialize(operand:) ⇒ NotExpr
constructor
A new instance of NotExpr.
Constructor Details
#initialize(operand:) ⇒ NotExpr
Returns a new instance of NotExpr.
40 41 42 43 |
# File 'lib/openehr/aql/model/where_clause.rb', line 40 def initialize(operand:) @operand = operand freeze end |
Instance Attribute Details
#operand ⇒ Object (readonly)
Returns the value of attribute operand.
38 39 40 |
# File 'lib/openehr/aql/model/where_clause.rb', line 38 def operand @operand end |