Uses of Interface
anl.aida.core.MIFSTerm

Packages that use MIFSTerm
anl.aida   
anl.aida.core   
anl.aida.sv   
 

Uses of MIFSTerm in anl.aida
 

Methods in anl.aida with parameters of type MIFSTerm
 void TermsTest.TestDocCallback.apply(int termIndex, MIFSTerm term, int freq, float score)
           
 void TermsTest.TestTermCallback.newTerm(int termIndex, MIFSTerm term)
           
 

Uses of MIFSTerm in anl.aida.core
 

Classes in anl.aida.core that implement MIFSTerm
private static class STCBuilder.TermImpl
           
 

Methods in anl.aida.core that return MIFSTerm
 MIFSTerm STCBuilder.STCollection.getTerm(int index)
          Gets the term at the specified index.
 MIFSTerm ScoredTermsCollection.getTerm(int index)
          Gets the term at the specified index.
 

Methods in anl.aida.core that return types with arguments of type MIFSTerm
 java.lang.Iterable<MIFSTerm> STCBuilder.STCollection.terms()
          Gets an iterable over all the terms in this collection.
 java.lang.Iterable<MIFSTerm> ScoredTermsCollection.terms()
          Gets an iterable over all the terms in this collection.
 

Methods in anl.aida.core with parameters of type MIFSTerm
 void ScoredDocumentCallback.apply(int termIndex, MIFSTerm term, int frequency, float score)
          Provides the score / frequency for the specified term for the document specified in the last newDocument call.
 void STCWriter.newTerm(int termIndex, MIFSTerm term)
          Called when a new term is encountered during iteration.
 void STCBuilder.STCollection.STCProcedure.newTerm(int index, MIFSTerm term)
           
 void ScoredTermCallback.newTerm(int termIndex, MIFSTerm term)
          Called when a new term is encountered during iteration.
 

Uses of MIFSTerm in anl.aida.sv
 

Fields in anl.aida.sv with type parameters of type MIFSTerm
private  Filter<MIFSTerm> SVIndexBuilder.filter
           
 

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