Class: CmisServer::Query::WhereCondition

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(left, operator, right) ⇒ WhereCondition

Returns a new instance of WhereCondition.



260
261
262
263
264
# File 'lib/cmis_server/query/simple_parser.rb', line 260

def initialize(left, operator, right)
  @left = left
  @operator = operator
  @right = right
end

Instance Attribute Details

#leftObject

Returns the value of attribute left.



258
259
260
# File 'lib/cmis_server/query/simple_parser.rb', line 258

def left
  @left
end

#operatorObject

Returns the value of attribute operator.



258
259
260
# File 'lib/cmis_server/query/simple_parser.rb', line 258

def operator
  @operator
end

#rightObject

Returns the value of attribute right.



258
259
260
# File 'lib/cmis_server/query/simple_parser.rb', line 258

def right
  @right
end