WordNet::

Morph class

WordNet morph model class

Public Instance Methods

morph()

The text of the morph

# File lib/wordnet/morph.rb, line 29
        
morphid()

The Integer ID of the morph

# File lib/wordnet/morph.rb, line 25
        
to_s()

Return the stringified word; alias for lemma.

# File lib/wordnet/morph.rb, line 55
def to_s
        return "%s (%s)" % [ self.morph, self.pos ]
end
words()

The WordNet::Word entries associated with this Morph

# File lib/wordnet/morph.rb, line 48
many_to_many :words,
        join_table: :morphmaps,
        right_key: :wordid,
        left_key: :morphid