Class: CmisServer::Query::Statement::Select
- Defined in:
- lib/cmis_server/query/statement.rb
Instance Attribute Summary collapse
-
#from ⇒ Object
readonly
Returns the value of attribute from.
-
#select_list ⇒ Object
readonly
Returns the value of attribute select_list.
-
#where ⇒ Object
readonly
Returns the value of attribute where.
Instance Method Summary collapse
-
#initialize(select_list, from, where) ⇒ Select
constructor
A new instance of Select.
Constructor Details
#initialize(select_list, from, where) ⇒ Select
Returns a new instance of Select.
44 45 46 47 48 |
# File 'lib/cmis_server/query/statement.rb', line 44 def initialize(select_list,from,where) @select_list=select_list @from=from @where=where end |
Instance Attribute Details
#from ⇒ Object (readonly)
Returns the value of attribute from.
49 50 51 |
# File 'lib/cmis_server/query/statement.rb', line 49 def from @from end |
#select_list ⇒ Object (readonly)
Returns the value of attribute select_list.
49 50 51 |
# File 'lib/cmis_server/query/statement.rb', line 49 def select_list @select_list end |
#where ⇒ Object (readonly)
Returns the value of attribute where.
49 50 51 |
# File 'lib/cmis_server/query/statement.rb', line 49 def where @where end |