Class: SQLParser::Statement::Between
- Defined in:
- lib/sql-parser/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.
Methods inherited from Node
Constructor Details
#initialize(left, min, max) ⇒ Between
Returns a new instance of Between.
297 298 299 300 301 |
# File 'lib/sql-parser/statement.rb', line 297 def initialize(left, min, max) @left = left @min = min @max = max end |
Instance Attribute Details
#left ⇒ Object (readonly)
Returns the value of attribute left.
303 304 305 |
# File 'lib/sql-parser/statement.rb', line 303 def left @left end |
#max ⇒ Object (readonly)
Returns the value of attribute max.
305 306 307 |
# File 'lib/sql-parser/statement.rb', line 305 def max @max end |
#min ⇒ Object (readonly)
Returns the value of attribute min.
304 305 306 |
# File 'lib/sql-parser/statement.rb', line 304 def min @min end |