Class: VORuby::ADQL::V1_0::NotLikePred

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

Overview

The Not Like expression of a query

Instance Attribute Summary

Attributes inherited from LikePred

#arg, #pattern

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from LikePred

#==, 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::LikePred

Class Method Details

.xml_typeObject



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

def self.xml_type; 'notLikePredType' end

Instance Method Details

#to_sObject



1281
1282
1283
# File 'lib/voruby/adql/1.0/adql.rb', line 1281

def to_s
  "#{arg} NOT LIKE #{pattern}"
end