Class: OpenEHR::AQL::Model::OrderByClause
- Inherits:
-
Object
- Object
- OpenEHR::AQL::Model::OrderByClause
- Defined in:
- lib/openehr/aql/model/order_by_and_limit.rb
Overview
orderByClause : ORDER BY orderByExpr (SYM_COMMA orderByExpr)* ;
Instance Attribute Summary collapse
-
#items ⇒ Object
readonly
Returns the value of attribute items.
Instance Method Summary collapse
-
#initialize(items:) ⇒ OrderByClause
constructor
A new instance of OrderByClause.
Constructor Details
#initialize(items:) ⇒ OrderByClause
Returns a new instance of OrderByClause.
8 9 10 11 |
# File 'lib/openehr/aql/model/order_by_and_limit.rb', line 8 def initialize(items:) @items = items.freeze freeze end |
Instance Attribute Details
#items ⇒ Object (readonly)
Returns the value of attribute items.
6 7 8 |
# File 'lib/openehr/aql/model/order_by_and_limit.rb', line 6 def items @items end |