Uses of Interface
de.unidu.is.text.Filter

Packages that use Filter
de.unidu.is.retrieval.pire.dt Provides data structures for PIRE. 
de.unidu.is.text Provides filters for text processing. 
 

Uses of Filter in de.unidu.is.retrieval.pire.dt
 

Methods in de.unidu.is.retrieval.pire.dt that return Filter
protected abstract  Filter AbstractDT.getFilter(java.lang.String operator)
          Returns a filter for converting a document value into tokens/token frequency tuples.
protected abstract  Filter AbstractDT.getQueryFilter(java.lang.String operator)
          Returns a filter for converting a condition comparison value into tokens/token frequency tuples.
protected  Filter NameDT.getFilter(java.lang.String operator)
          Returns a filter for converting a document value into tokens/token frequency tuples.
protected  Filter NameDT.getQueryFilter(java.lang.String operator)
          Returns a filter for converting a condition comparison value into tokens/token frequency tuples.
protected  Filter NumberDT.getFilter(java.lang.String operator)
          Returns a filter for converting a document value into tokens/token frequency tuples.
protected  Filter NumberDT.getQueryFilter(java.lang.String operator)
          Returns a filter for converting a condition comparison value into tokens/token frequency tuples.
protected  Filter TextDT.getFilter(java.lang.String operator)
          Returns a filter for converting a document value into tokens/token frequency tuples.
protected  Filter TextDT.getQueryFilter(java.lang.String operator)
          Returns a filter for converting a condition comparison value into tokens/token frequency tuples.
protected  Filter TextGermanDT.getFilter(java.lang.String operator)
          Returns a filter for converting a document value into tokens/token frequency tuples.
protected  Filter TextGermanDT.getQueryFilter(java.lang.String operator)
          Returns a filter for converting a condition comparison value into tokens/token frequency tuples.
 

Uses of Filter in de.unidu.is.text
 

Classes in de.unidu.is.text that implement Filter
 class AbstractFilter
          This is an abstract filter implementation which allows for chaining filters.
 class AbstractSingleItemFilter
          This is an abstract filter implementation which converts every object into exactly one object (or into null), and which allows for chaining filters.
 class CodecSoundexFilter
          This filter converts a specified string into its soundex representation, using code from Apache Jakarta Commons Codec.
 class CounterFilter
          This filter counts occurences of objects, and returns a list of object-frequency pairs.
 class GermanStemmerFilter
          This filter converts a specified German string into stemmed version.
 class HTMLFilter
          This filter extracts all text from a specified HTML string, and returns the text content in a single string.
 class LowercaseFilter
          This filter converts a specified string into lowercase.
 class ParserFilter
          This filter splits a string into tokens (by converting all non-letter characters are converted into whitespaces, splitting the resulting string is split into tokens with whitespaces as token boundaries, and considering only tokens with at least 3 characters), converts the tokens into lowercase, computes the stems of the tokens, and removed stopwords.
 class SoundexFilter
          This filter converts a specified string into its soundex representation.
 class StemmerFilter
          This filter converts a specified string into stemmed version.
 class StopwordFilter
          This filter is used for removing stop words.
 class TokenSplitterFilter
          This filter splits a string into tokens.
 class UntagFilter
          This filter removes XML/HTML tags from a specified string.
 class WordConcatenatorFilter
          This filter concatenes all values together (separated by a space).
 class WordSetConcatenatorFilter
          This filter concatenes all values together (separated by a space), where each word only occurs once.
 class WordSplitterFilter
          This filter splits a string into tokens.
 

Fields in de.unidu.is.text declared as Filter
protected  Filter AbstractFilter.nextFilter
          The next filter in the filter chain.
protected  Filter WordConcatenatorFilter.nextFilter
          The next filter in the filter chain.
protected  Filter WordSetConcatenatorFilter.nextFilter
          The next filter in the filter chain.
 

Constructors in de.unidu.is.text with parameters of type Filter
AbstractFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
AbstractSingleItemFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
CodecSoundexFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
CounterFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
GermanStemmerFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
HTMLFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
LowercaseFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
SoundexFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
StemmerFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
StopwordFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
StopwordFilter(Filter nextFilter, java.util.Set stopwords)
          Creates a new instance and sets the next filter in the chain.
StopwordFilter(Filter nextFilter, java.lang.String fileName)
          Creates a new instance and sets the next filter in the chain.
TokenSplitterFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
TokenSplitterFilter(Filter nextFilter, int length)
          Creates a new instance and sets the next filter in the chain.
UntagFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
WordConcatenatorFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
WordSetConcatenatorFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
WordSplitterFilter(Filter nextFilter)
          Creates a new instance and sets the next filter in the chain.
WordSplitterFilter(Filter nextFilter, int length)
          Creates a new instance and sets the next filter in the chain.