Uses of Class
tml.corpus.Term

Packages that use Term
tml.corpus Implements all the classes required for corpora management as Bags of Words, it also includes NLP for sentences. 
 

Uses of Term in tml.corpus
 

Methods in tml.corpus that return Term
 Term Dictionary.getTermByText(java.lang.String word)
          Returns a Term that represents a word, null if it is not in the Dictionary
 

Methods in tml.corpus that return types with arguments of type Term
 java.util.Collection<Term> TextPassage.getTerms()
           
 java.util.Collection<Term> Dictionary.getTerms()
          Returns the collection of Terms in the Dictionary
 

Methods in tml.corpus with parameters of type Term
 void TextPassage.addTerm(Term term, int frequency)
          Adds a Term to the passage, it adds a number to the statistics but it doesn't calculate the final values
 void TextPassage.removeTerm(Term term)
          Removes a Term from the passage
 void TextPassage.updateTermIndex(Term term, int oldIndex, int newIndex)
          Updates the index of a Term in the passage