Class: OpenEHR::AQL::Model::MatchesExpr

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

Overview

identifiedExpr : identifiedPath MATCHES matchesOperand | ... ;

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path:, operand:) ⇒ MatchesExpr

Returns a new instance of MatchesExpr.



84
85
86
87
88
# File 'lib/openehr/aql/model/where_clause.rb', line 84

def initialize(path:, operand:)
  @path = path
  @operand = operand
  freeze
end

Instance Attribute Details

#operandObject (readonly)

Returns the value of attribute operand.



82
83
84
# File 'lib/openehr/aql/model/where_clause.rb', line 82

def operand
  @operand
end

#pathObject (readonly)

Returns the value of attribute path.



82
83
84
# File 'lib/openehr/aql/model/where_clause.rb', line 82

def path
  @path
end