Class: OpenEHR::AQL::Model::LikeExpr
- Inherits:
-
Object
- Object
- OpenEHR::AQL::Model::LikeExpr
- Defined in:
- lib/openehr/aql/model/where_clause.rb
Overview
identifiedExpr : identifiedPath LIKE likeOperand | ... ;
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:) ⇒ LikeExpr
constructor
A new instance of LikeExpr.
Constructor Details
#initialize(path:, operand:) ⇒ LikeExpr
Returns a new instance of LikeExpr.
73 74 75 76 77 |
# File 'lib/openehr/aql/model/where_clause.rb', line 73 def initialize(path:, operand:) @path = path @operand = operand freeze end |
Instance Attribute Details
#operand ⇒ Object (readonly)
Returns the value of attribute operand.
71 72 73 |
# File 'lib/openehr/aql/model/where_clause.rb', line 71 def operand @operand end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
71 72 73 |
# File 'lib/openehr/aql/model/where_clause.rb', line 71 def path @path end |