Uses of Class
org.egothor.stemmer.Trie

Packages that use Trie
org.egothor.parser.filter This package defines objects that filter tokens. 
org.egothor.stemmer This package does not contain a solid JAVA documentation. 
 

Uses of Trie in org.egothor.parser.filter
 

Methods in org.egothor.parser.filter with parameters of type Trie
 void Stemmer.setStemmer(Trie stemmer)
          Sets the stemmer attribute of the Stem object
 

Constructors in org.egothor.parser.filter with parameters of type Trie
Stemmer(Sequence<Token> prev, Trie stemmer)
          Construct a Stem object using the given stemmer table.
 

Uses of Trie in org.egothor.stemmer
 

Subclasses of Trie in org.egothor.stemmer
 class MultiTrie
          The MultiTrie is a Trie of Tries.
 class MultiTrie2
          The MultiTrie is a Trie of Tries.
 

Methods in org.egothor.stemmer that return Trie
 Trie Stock.getStemmer(java.util.Locale lang)
          Return the Trie (stemmer) for the given language.
 Trie Gener.optimize(Trie orig)
          Return a Trie with infrequent values occurring in the given Trie removed.
 Trie Lift.optimize(Trie orig)
          Optimize (eliminate rows with no content) the given Trie and return the reduced Trie.
 Trie Optimizer.optimize(Trie orig)
          Optimize (remove empty rows) from the given Trie and return the resulting Trie.
 Trie Reduce.optimize(Trie orig)
          Optimize (remove holes in the rows) the given Trie and return the restructured Trie.
 Trie MultiTrie.reduce(Reduce by)
          Remove empty rows from the given Trie and return the newly reduced Trie.
 Trie MultiTrie2.reduce(Reduce by)
          Remove empty rows from the given Trie and return the newly reduced Trie.
 Trie Trie.reduce(Reduce by)
          Remove empty rows from the given Trie and return the newly reduced Trie.
 

Methods in org.egothor.stemmer with parameters of type Trie
 Trie Gener.optimize(Trie orig)
          Return a Trie with infrequent values occurring in the given Trie removed.
 Trie Lift.optimize(Trie orig)
          Optimize (eliminate rows with no content) the given Trie and return the reduced Trie.
 Trie Optimizer.optimize(Trie orig)
          Optimize (remove empty rows) from the given Trie and return the resulting Trie.
 Trie Reduce.optimize(Trie orig)
          Optimize (remove holes in the rows) the given Trie and return the restructured Trie.