Class: OpenEHR::AQL::Model::LikeExpr

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

Overview

identifiedExpr : identifiedPath LIKE likeOperand | ... ;

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#operandObject (readonly)

Returns the value of attribute operand.



71
72
73
# File 'lib/openehr/aql/model/where_clause.rb', line 71

def operand
  @operand
end

#pathObject (readonly)

Returns the value of attribute path.



71
72
73
# File 'lib/openehr/aql/model/where_clause.rb', line 71

def path
  @path
end