Uses of Class
org.egothor.core.Filter

Packages that use Filter
org.egothor.core.memory This package contains an implementation of barrels in memory. 
org.egothor.parser.filter This package defines objects that filter tokens. 
 

Uses of Filter in org.egothor.core.memory
 

Methods in org.egothor.core.memory with parameters of type Filter
 boolean FTField.addFilter(Filter filter)
          Append a next filter to the chain of filters used over the token stream of FTField.words().
 

Uses of Filter in org.egothor.parser.filter
 

Subclasses of Filter in org.egothor.parser.filter
 class DupWithoutDiacritics
          This filter transforms all (Latin) words to non-diacritical (ASCII), but still keeps the original tokens.
 class Grammer
          This class is really grammer - it produces N-grams.
 class LowerCase
          This filter transforms all words to lower case.
 class ParagraphFilter
          Filter sets the sentence, paragraph and sentenceInParagraph fields in the Token class, just like the ParagraphPunctFilter.
 class ParagraphPunctFilter
          Filter sets the sentence, paragraph and sentenceInParagraph fields in the Token class.
 class Phonetics
           
 class PunctFilter
           
 class RemoveDiacritics
          This filter transforms all (Latin) words to non-diacritical (ASCII).
 class Stemmer
          The Stemmer object is a filter which transforms all words to their respective stems.
 class StopFilter
          This abstract class should be extended by any class wishing to ignore certain tokens while processing all tokens.
 class WordNGrammer
          This class produces N-grams of words.