Class: NomenclaturalRank::Iczn::FamilyGroup::Infrafamily
- Inherits:
-
NomenclaturalRank::Iczn::FamilyGroup
- Object
- NomenclaturalRank
- NomenclaturalRank::Iczn
- NomenclaturalRank::Iczn::FamilyGroup
- NomenclaturalRank::Iczn::FamilyGroup::Infrafamily
- Defined in:
- app/models/nomenclatural_rank/iczn/family_group/infrafamily.rb
Constant Summary
Constants inherited from NomenclaturalRank::Iczn
Class Method Summary collapse
- .parent_rank ⇒ Object
- .typical_use ⇒ Object
- .valid_parents ⇒ Object
- .validate_name_format(taxon_name) ⇒ Object
Methods inherited from NomenclaturalRank::Iczn
Methods inherited from NomenclaturalRank
abbreviation, bottom_rank, collect_descendants_to_s, collect_to_s, nomenclatural_code, nomenclatural_code_class, ordered_ranks, parent, rank_name, top_rank, valid_name_ending
Class Method Details
.parent_rank ⇒ Object
3 4 5 |
# File 'app/models/nomenclatural_rank/iczn/family_group/infrafamily.rb', line 3 def self.parent_rank NomenclaturalRank::Iczn::FamilyGroup::Subfamily end |
.typical_use ⇒ Object
22 23 24 |
# File 'app/models/nomenclatural_rank/iczn/family_group/infrafamily.rb', line 22 def self.typical_use false end |
.valid_parents ⇒ Object
13 14 15 |
# File 'app/models/nomenclatural_rank/iczn/family_group/infrafamily.rb', line 13 def self.valid_parents [NomenclaturalRank::Iczn::FamilyGroup::Subfamily.to_s] end |
.validate_name_format(taxon_name) ⇒ Object
7 8 9 10 11 |
# File 'app/models/nomenclatural_rank/iczn/family_group/infrafamily.rb', line 7 def self.validate_name_format(taxon_name) super return true if taxon_name.name.length < 2 #taxon_name.errors.add(:name, 'name must end in -odd') if not(taxon_name.name =~ /.*odd\Z/) end |