Class: MESH::SemanticRelationshipTypes

Inherits:
Object
  • Object
show all
Defined in:
lib/MESH/semantic_relationship_types.rb

Constant Summary collapse

Types =
{
  'BRD' => :broader,
  'EQV' => :equivalent,
  'NRW' => :narrower,
  'REL' => :related
}

Class Method Summary collapse

Class Method Details

.[](key) ⇒ Object



4
5
6
# File 'lib/MESH/semantic_relationship_types.rb', line 4

def self.[](key)
  Types[key]
end