Class: OpenEHR::AQL::Model::NotExpr

Inherits:
Object
  • Object
show all
Defined in:
lib/openehr/aql/model/where_clause.rb

Overview

whereExpr : ... | NOT whereExpr | ... ;

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#operandObject (readonly)

Returns the value of attribute operand.



38
39
40
# File 'lib/openehr/aql/model/where_clause.rb', line 38

def operand
  @operand
end