Class: VORuby::ADQL::V1_0::AllSelectionItem

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

Overview

Represent all columns as in Select * query

Class Method Summary collapse

Instance Method Summary collapse

Methods included from SerializableToXml

#element

Class Method Details

.from_xml(xml) ⇒ Object



755
756
757
# File 'lib/voruby/adql/1.0/adql.rb', line 755

def self.from_xml(xml)
  self.new
end

.xml_typeObject



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

def self.xml_type; 'allSelectionItemType' end

Instance Method Details

#==(a) ⇒ Object



751
752
753
# File 'lib/voruby/adql/1.0/adql.rb', line 751

def ==(a)
  self.class == a.class
end

#to_sObject



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

def to_s; '*' end

#to_xml(name = nil) ⇒ Object



747
748
749
# File 'lib/voruby/adql/1.0/adql.rb', line 747

def to_xml(name=nil)
  super(name)
end