Class: TaxonNameRelationship::Hybrid
- Inherits:
-
TaxonNameRelationship
- Object
- ActiveRecord::Base
- ApplicationRecord
- TaxonNameRelationship
- TaxonNameRelationship::Hybrid
- Defined in:
- app/models/taxon_name_relationship/hybrid.rb
Constant Summary
Constants included from SoftValidation
SoftValidation::ANCESTORS_WITH_SOFT_VALIDATIONS
Instance Attribute Summary
Attributes inherited from TaxonNameRelationship
#no_cached, #object_taxon_name_id, #project_id, #subject_taxon_name_id, #type
Class Method Summary collapse
- .assignable ⇒ Object
- .disjoint_object_classes ⇒ Object
- .disjoint_subject_classes ⇒ Object
- .nomenclatural_priority ⇒ Object
-
.valid_object_ranks ⇒ Object
right_side.
-
.valid_subject_ranks ⇒ Object
left_side.
Instance Method Summary collapse
- #set_cached_names_for_taxon_names ⇒ Object protected
- #sv_coordinated_taxa ⇒ Object
- #sv_coordinated_taxa_object ⇒ Object
Methods inherited from TaxonNameRelationship
collect_descendants_and_itself_to_s, collect_descendants_to_s, collect_to_s, disjoint_taxon_name_relationships, #dwc_occurrences, gbif_status_of_object, gbif_status_of_subject, #is_combination?, #is_invalidating?, nomen_uri, #nomenclature_date, #object_properties, #object_status, #object_status_connector_to_subject, #object_status_tag, parent, required_taxon_name_relationships, #subject_and_object_in_same_project, #subject_invalid_statuses, #subject_properties, #subject_status, #subject_status_connector_to_object, #subject_status_tag, #sv_fix_combination_relationship, #sv_fix_coordinated_object_taxa, #sv_fix_coordinated_subject_taxa, #sv_fix_not_specific_relationship, #sv_fix_objective_synonym_relationship, #sv_fix_subject_parent_update, #sv_not_specific_relationship, #sv_objective_synonym_relationship, #sv_specific_relationship, #sv_synonym_linked_to_valid_name, #sv_synonym_relationship, #sv_validate_disjoint_object, #sv_validate_disjoint_relationships, #sv_validate_disjoint_subject, #sv_validate_priority, #sv_validate_required_relationships, #sv_validate_seniority, #type_class, #type_class=, #type_name, #validate_object_and_subject_both_protonyms, #validate_object_must_equal_subject_for_uncertain_placement, #validate_rank_group, #validate_subject_and_object_are_not_identical, #validate_subject_and_object_ranks, #validate_subject_and_object_share_code, #validate_type, #validate_uniqueness_of_typification_object
Methods included from Shared::IsData
#errors_excepting, #full_error_messages_excepting, #identical, #is_community?, #is_destroyable?, #is_editable?, #is_in_use?, #is_in_users_projects?, #metamorphosize, #similar
Methods included from SoftValidation
#clear_soft_validations, #fix_for, #fix_soft_validations, #soft_fixed?, #soft_valid?, #soft_validate, #soft_validated?, #soft_validations, #soft_validators
Methods included from Shared::Notes
#concatenated_notes_string, #reject_notes
Methods included from Shared::Citations
#cited?, #mark_citations_for_destruction, #nomenclature_date, #origin_citation_source_id, #reject_citations, #requires_citation?, #sources_by_topic_id
Methods included from Housekeeping
#has_polymorphic_relationship?
Methods inherited from ApplicationRecord
Class Method Details
.assignable ⇒ Object
24 25 26 |
# File 'app/models/taxon_name_relationship/hybrid.rb', line 24 def self.assignable true end |
.disjoint_object_classes ⇒ Object
28 29 30 |
# File 'app/models/taxon_name_relationship/hybrid.rb', line 28 def self.disjoint_object_classes ::ICZN + ['TaxonNameClassification::Icn::Hybrid'] end |
.disjoint_subject_classes ⇒ Object
17 18 19 20 21 22 |
# File 'app/models/taxon_name_relationship/hybrid.rb', line 17 def self.disjoint_subject_classes ::ICZN + self.collect_descendants_and_itself_to_s(TaxonNameClassification::Icn::NotEffectivelyPublished, TaxonNameClassification::Icn::EffectivelyPublished::InvalidlyPublished, TaxonNameClassification::Icn::EffectivelyPublished::ValidlyPublished::Illegitimate) end |
.nomenclatural_priority ⇒ Object
3 4 5 |
# File 'app/models/taxon_name_relationship/hybrid.rb', line 3 def self.nomenclatural_priority :reverse end |
.valid_object_ranks ⇒ Object
right_side
13 14 15 |
# File 'app/models/taxon_name_relationship/hybrid.rb', line 13 def self.valid_object_ranks ::ICN end |
.valid_subject_ranks ⇒ Object
left_side
8 9 10 |
# File 'app/models/taxon_name_relationship/hybrid.rb', line 8 def self.valid_subject_ranks ::ICN end |
Instance Method Details
#set_cached_names_for_taxon_names ⇒ Object (protected)
42 43 44 45 46 47 48 49 50 51 52 53 54 |
# File 'app/models/taxon_name_relationship/hybrid.rb', line 42 def set_cached_names_for_taxon_names begin TaxonName.transaction do t = object_taxon_name n = t.get_full_name t.update_columns( cached: n, cached_html: t.get_full_name_html(n) ) end end true end |
#sv_coordinated_taxa ⇒ Object
32 33 34 |
# File 'app/models/taxon_name_relationship/hybrid.rb', line 32 def sv_coordinated_taxa true # not applicable end |
#sv_coordinated_taxa_object ⇒ Object
36 37 38 |
# File 'app/models/taxon_name_relationship/hybrid.rb', line 36 def sv_coordinated_taxa_object true # not applicable end |