Class: VORuby::ADQL::Search

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

Overview

The base type for searches in Where and Having clauses of the query.

Class Method Summary collapse

Class Method Details

.from_xml(node) ⇒ Object



896
897
898
899
# File 'lib/voruby/adql/adql.rb', line 896

def self.from_xml(node)
  type_s = node.find_attribute('type', 'http://www.w3.org/2001/XMLSchema-instance')
  search = ObjectBuilder.get_class_for(type_s).from_xml(node)
end