Class: CmisServer::Query::Statement::Between
- Defined in:
- lib/cmis_server/query/statement.rb
Instance Attribute Summary collapse
-
#left ⇒ Object
readonly
Returns the value of attribute left.
-
#max ⇒ Object
readonly
Returns the value of attribute max.
-
#min ⇒ Object
readonly
Returns the value of attribute min.
Instance Method Summary collapse
-
#initialize(left, min, max) ⇒ Between
constructor
A new instance of Between.
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
#left ⇒ Object (readonly)
Returns the value of attribute left.
231 232 233 |
# File 'lib/cmis_server/query/statement.rb', line 231 def left @left end |
#max ⇒ Object (readonly)
Returns the value of attribute max.
233 234 235 |
# File 'lib/cmis_server/query/statement.rb', line 233 def max @max end |
#min ⇒ Object (readonly)
Returns the value of attribute min.
232 233 234 |
# File 'lib/cmis_server/query/statement.rb', line 232 def min @min end |