module ScientificNameClean::MultinomialName3

Public Instance Methods

canonical() click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 983
def canonical
  a.canonical + " " + c.canonical + " " + d.canonical
end
details() click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 995
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 991
def hybrid
  c.hybrid rescue false
end
pos() click to toggle source
# File lib/biodiversity/parser/scientific_name_clean.rb, line 987
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 979
def value
  a.value + " " + b.value + " " + c.value + " " + d.value
end