Class: OpenEHR::AQL::Model::OrderByClause

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

Overview

orderByClause : ORDER BY orderByExpr (SYM_COMMA orderByExpr)* ;

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#itemsObject (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