Class: OpenEHR::AQL::Model::MatchesExpr
- Inherits:
-
Object
- Object
- OpenEHR::AQL::Model::MatchesExpr
- Defined in:
- lib/openehr/aql/model/where_clause.rb
Overview
identifiedExpr : identifiedPath MATCHES matchesOperand | ... ;
Instance Attribute Summary collapse
-
#operand ⇒ Object
readonly
Returns the value of attribute operand.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(path:, operand:) ⇒ MatchesExpr
constructor
A new instance of MatchesExpr.
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
#operand ⇒ Object (readonly)
Returns the value of attribute operand.
82 83 84 |
# File 'lib/openehr/aql/model/where_clause.rb', line 82 def operand @operand end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
82 83 84 |
# File 'lib/openehr/aql/model/where_clause.rb', line 82 def path @path end |