class WordNet::Sense
WordNet
sense model class
Public Instance Methods
Return the synsets that are lexically linked to this sense via an “also see” link.
# File lib/wordnet/sense.rb, line 49 lexical_link :also_see, :also
Return the synsets that are lexically linked to this sense via an “antonym” link.
# File lib/wordnet/sense.rb, line 53 lexical_link :antonym
Return the synsets that are lexically linked to this sense via a “derivation” link.
# File lib/wordnet/sense.rb, line 57 lexical_link :derivation
Return the synsets that are lexically linked to this sense via a “domain category” link.
# File lib/wordnet/sense.rb, line 61 lexical_link :domain_categories, :domain_category
Return the synsets that are lexically linked to this sense via a “domain member category” link.
# File lib/wordnet/sense.rb, line 66 lexical_link :domain_member_categories, :domain_member_category
Return the synsets that are lexically linked to this sense via a “domain member region” link.
# File lib/wordnet/sense.rb, line 70 lexical_link :domain_member_region
Return the synsets that are lexically linked to this sense via a “domain member usage” link.
# File lib/wordnet/sense.rb, line 74 lexical_link :domain_member_usage
Return the synsets that are lexically linked to this sense via a “domain region” link.
# File lib/wordnet/sense.rb, line 78 lexical_link :domain_region
Return the synsets that are lexically linked to this sense via a “domain usage” link.
# File lib/wordnet/sense.rb, line 82 lexical_link :domain_usage
The lexical links between this sense and its related Synsets. Sense
-> [ LexicalLinks ] -> [ Synsets ]
# File lib/wordnet/sense.rb, line 23 one_to_many :lexlinks, class: 'WordNet::LexicalLink', key: [ :synset1id, :word1id ], primary_key: [ :synsetid, :wordid ]
Return the synsets that are lexically linked to this sense via a “participle” link.
# File lib/wordnet/sense.rb, line 86 lexical_link :participle
Return the synsets that are lexically linked to this sense via a “pertainym” link.
# File lib/wordnet/sense.rb, line 90 lexical_link :pertainym
The Synset this is a Sense
for
# File lib/wordnet/sense.rb, line 14 many_to_one :synset, key: :synsetid
Return the synsets that are lexically linked to this sense via a “verb group” link.
# File lib/wordnet/sense.rb, line 94 lexical_link :verb_group
The Word this is a Sense
for
# File lib/wordnet/sense.rb, line 18 many_to_one :word, key: :wordid