Class: OpenEHR::AQL::Model::ExistsExpr
- Inherits:
-
Object
- Object
- OpenEHR::AQL::Model::ExistsExpr
- Defined in:
- lib/openehr/aql/model/where_clause.rb
Overview
identifiedExpr : EXISTS identifiedPath | ... ;
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(path:) ⇒ ExistsExpr
constructor
A new instance of ExistsExpr.
Constructor Details
#initialize(path:) ⇒ ExistsExpr
Returns a new instance of ExistsExpr.
63 64 65 66 |
# File 'lib/openehr/aql/model/where_clause.rb', line 63 def initialize(path:) @path = path freeze end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
61 62 63 |
# File 'lib/openehr/aql/model/where_clause.rb', line 61 def path @path end |