Class: OpenEHR::AQL::Model::ExistsExpr

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

Overview

identifiedExpr : EXISTS identifiedPath | ... ;

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#pathObject (readonly)

Returns the value of attribute path.



61
62
63
# File 'lib/openehr/aql/model/where_clause.rb', line 61

def path
  @path
end