Uses of Interface
anl.aida.util.Filter

Packages that use Filter
anl.aida.ae.lucene   
anl.aida.sv   
anl.aida.util   
 

Uses of Filter in anl.aida.ae.lucene
 

Classes in anl.aida.ae.lucene that implement Filter
private static class CacheCreator.AllFilter
           
 class DocumentFrequencyFilter
          Filters a Term based on how many documents in an index it appears in.
 class FieldFilter
          Filters Terms based on their field.
 class StopWordFilter
          Terms filter that filters out a predefined list of stop words.
 class WordFilter
          Filters out terms that have any numeric component as well as any terms whose length is less than a minimum length.
 

Fields in anl.aida.ae.lucene declared as Filter
private  Filter<org.apache.lucene.index.Term> STCCreator.filter
           
private  Filter<org.apache.lucene.index.Term> CacheCreator.filter
           
 

Methods in anl.aida.ae.lucene with parameters of type Filter
 ScoredTermsCollection STCCreator.createCollection(org.apache.lucene.index.IndexReader reader, Filter<org.apache.lucene.index.Term> filter, DateRange range)
          Creates a ScoredTermsCollection.
 

Constructors in anl.aida.ae.lucene with parameters of type Filter
CacheCreator(DateRangeProducer drProducer, Filter<org.apache.lucene.index.Term> filter, org.apache.lucene.index.IndexReader reader)
           
 

Uses of Filter in anl.aida.sv
 

Fields in anl.aida.sv declared as Filter
private  Filter<MIFSTerm> SVIndexBuilder.filter
           
 

Constructors in anl.aida.sv with parameters of type Filter
SVIndexBuilder(int seedLength, Filter<MIFSTerm> filter)
          Creates an SVIndexBuilder with the specified seedlength and minFreq.
TermVectorsFromSTC(int seedLength, Filter<MIFSTerm> filter, ScoredTermsCollection stc)
           
 

Uses of Filter in anl.aida.util
 

Classes in anl.aida.util that implement Filter
 class AndFilter<T>
          An aggregate Filter that returns true if each of its members Filters returns true.
 class KeywordFilter
           
 

Fields in anl.aida.util with type parameters of type Filter
private  java.util.List<Filter<T>> AndFilter.filters
           
 

Constructors in anl.aida.util with parameters of type Filter
AndFilter(Filter<T>... filters)