Class: CmisServer::Query::Statement::Select

Inherits:
Node
  • Object
show all
Defined in:
lib/cmis_server/query/statement.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#fromObject (readonly)

Returns the value of attribute from.



49
50
51
# File 'lib/cmis_server/query/statement.rb', line 49

def from
  @from
end

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

#whereObject (readonly)

Returns the value of attribute where.



49
50
51
# File 'lib/cmis_server/query/statement.rb', line 49

def where
  @where
end