class InterMine::PathQuery::LookupConstraint
Attributes
extra_value[RW]
Public Class Methods
valid_ops()
click to toggle source
# File lib/intermine/query.rb 1312 def self.valid_ops 1313 return ["LOOKUP"] 1314 end
Public Instance Methods
to_elem()
click to toggle source
Calls superclass method
InterMine::PathQuery::SingleValueConstraint#to_elem
# File lib/intermine/query.rb 1316 def to_elem 1317 elem = super 1318 if @extra_value 1319 elem.add_attribute("extraValue", @extra_value) 1320 end 1321 return elem 1322 end