Module: OracleSqlParser::Grammar::Condition::Between::BetweenCondition1
- Defined in:
- lib/oracle-sql-parser/grammar/condition/between.rb
Instance Method Summary collapse
- #and_keyword ⇒ Object
- #between_keyword ⇒ Object
- #from ⇒ Object
- #n ⇒ Object
- #space1 ⇒ Object
- #space2 ⇒ Object
- #space3 ⇒ Object
- #space4 ⇒ Object
- #target ⇒ Object
- #to ⇒ Object
Instance Method Details
#and_keyword ⇒ Object
51 52 53 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 51 def and_keyword elements[7] end |
#between_keyword ⇒ Object
35 36 37 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 35 def between_keyword elements[3] end |
#from ⇒ Object
43 44 45 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 43 def from elements[5] end |
#n ⇒ Object
31 32 33 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 31 def n elements[2] end |
#space1 ⇒ Object
27 28 29 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 27 def space1 elements[1] end |
#space2 ⇒ Object
39 40 41 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 39 def space2 elements[4] end |
#space3 ⇒ Object
47 48 49 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 47 def space3 elements[6] end |
#space4 ⇒ Object
55 56 57 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 55 def space4 elements[8] end |
#target ⇒ Object
23 24 25 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 23 def target elements[0] end |
#to ⇒ Object
59 60 61 |
# File 'lib/oracle-sql-parser/grammar/condition/between.rb', line 59 def to elements[9] end |