module ScientificNameClean::MultinomialName1
Public Instance Methods
canonical()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 915 def canonical a.canonical + " " + c.canonical + " " + d.canonical end
details()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 927 def details a.details.merge(b.details).merge(c.details).merge(d.details) end
hybrid()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 923 def hybrid c.hybrid rescue false end
pos()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 919 def pos a.pos.merge(b.pos).merge(c.pos).merge(d.pos) end
value()
click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 911 def value a.value + " " + b.value + " " + c.value + " " + d.value end