The Encog Project

org.encog.nlp.lexicon.data
Class Lemma

java.lang.Object
  extended by org.encog.util.orm.DataObject
      extended by org.encog.nlp.lexicon.data.Lemma
All Implemented Interfaces:
java.io.Serializable

public class Lemma
extends DataObject

Note: This class is part of the Encog Natural Language Processing(NLP) package. This package is still under heavy construction, and will not be considered stable until Encog 3.0.

Author:
jheaton
See Also:
Serialized Form

Constructor Summary
Lemma()
           
 
Method Summary
 void addWordUse(Word word)
           
 Word findFix(Fix fix)
           
 Word getRoot()
           
 java.util.Collection<Word> getUses()
           
 void setRoot(Word root)
           
 void setUses(java.util.Collection<Word> uses)
           
 java.lang.String toString()
           
 void validate()
          Validate this object.
 
Methods inherited from class org.encog.util.orm.DataObject
copy, equals, getBooleanValue, getCreated, getId, getLastUpdate, getVersion, setCreated, setLastUpdate
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Lemma

public Lemma()
Method Detail

validate

public void validate()
Description copied from class: DataObject
Validate this object.

Specified by:
validate in class DataObject

getUses

public java.util.Collection<Word> getUses()

setUses

public void setUses(java.util.Collection<Word> uses)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

addWordUse

public void addWordUse(Word word)

getRoot

public Word getRoot()

setRoot

public void setRoot(Word root)

findFix

public Word findFix(Fix fix)

The Encog Project