Class: VORuby::ADQL::V1_0::NotBetweenPred

Inherits:
BetweenPred show all
Defined in:
lib/voruby/adql/1.0/adql.rb

Overview

Represents the Not Between expression of a query

Instance Attribute Summary

Attributes inherited from BetweenPred

#arg1, #arg2, #arg3

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BetweenPred

#==, from_xml, #initialize, #to_xml

Methods inherited from Search

#to_xml

Methods included from SerializableToXml

#element

Constructor Details

This class inherits a constructor from VORuby::ADQL::V1_0::BetweenPred

Class Method Details

.xml_typeObject



1455
# File 'lib/voruby/adql/1.0/adql.rb', line 1455

def self.xml_type; 'notBetweenPredType' end

Instance Method Details

#to_sObject



1457
1458
1459
# File 'lib/voruby/adql/1.0/adql.rb', line 1457

def to_s
  "#{self.arg1} NOT BETWEEN #{self.arg2} AND #{self.arg3}"
end