Class: OpenEHR::AQL::Model::MatchesValueList
- Inherits:
-
Object
- Object
- OpenEHR::AQL::Model::MatchesValueList
- Defined in:
- lib/openehr/aql/model/where_clause.rb
Overview
matchesOperand's value-list alternative:
SYM_LEFT_CURLY valueListItem (SYM_COMMA valueListItem)* SYM_RIGHT_CURLY
The terminologyFunction-item and bare-URI alternatives need a URI lexer token that doesn't exist yet, and are deferred.
Instance Attribute Summary collapse
-
#items ⇒ Object
readonly
Returns the value of attribute items.
Instance Method Summary collapse
-
#initialize(items:) ⇒ MatchesValueList
constructor
A new instance of MatchesValueList.
Constructor Details
#initialize(items:) ⇒ MatchesValueList
Returns a new instance of MatchesValueList.
98 99 100 101 |
# File 'lib/openehr/aql/model/where_clause.rb', line 98 def initialize(items:) @items = items.freeze freeze end |
Instance Attribute Details
#items ⇒ Object (readonly)
Returns the value of attribute items.
96 97 98 |
# File 'lib/openehr/aql/model/where_clause.rb', line 96 def items @items end |