Class: CmisServer::Query::Statement::Between

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(left, min, max) ⇒ Between

Returns a new instance of Between.



225
226
227
228
229
# File 'lib/cmis_server/query/statement.rb', line 225

def initialize(left, min, max)
  @left = left
  @min = min
  @max = max
end

Instance Attribute Details

#leftObject (readonly)

Returns the value of attribute left.



231
232
233
# File 'lib/cmis_server/query/statement.rb', line 231

def left
  @left
end

#maxObject (readonly)

Returns the value of attribute max.



233
234
235
# File 'lib/cmis_server/query/statement.rb', line 233

def max
  @max
end

#minObject (readonly)

Returns the value of attribute min.



232
233
234
# File 'lib/cmis_server/query/statement.rb', line 232

def min
  @min
end