Class: VORuby::ADQL::InclusionSet

Inherits:
Object
  • Object
show all
Defined in:
lib/voruby/adql/adql.rb

Overview

The base type for selection set in a SQL IN expression.

Direct Known Subclasses

ConstantListSet, SubQuerySet

Class Method Summary collapse

Class Method Details

.from_xml(node) ⇒ Object



1320
1321
1322
1323
1324
# File 'lib/voruby/adql/adql.rb', line 1320

def self.from_xml(node)
  #type_s = node.attributes['xsi:type']
  type_s = node.find_attribute('type', 'http://www.w3.org/2001/XMLSchema-instance')
  return ObjectBuilder.get_class_for(type_s).from_xml(node)
end