Uses of Class
org.apache.lucene.codecs.TermStats

Packages that use TermStats
org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index. 
org.apache.lucene.codecs.lucene40 Lucene 4.0 file format. 
org.apache.lucene.codecs.pulsing Pulsing Codec: inlines low frequency terms' postings into terms dictionary. 
org.apache.lucene.codecs.sep Sep: base support for separate files (doc,frq,pos,skp,pyl) 
 

Uses of TermStats in org.apache.lucene.codecs
 

Methods in org.apache.lucene.codecs that return TermStats
 TermStats PostingsConsumer.merge(MergeState mergeState, DocsEnum postings, FixedBitSet visitedDocs)
          Default merge impl: append documents, mapping around deletes
 

Methods in org.apache.lucene.codecs with parameters of type TermStats
abstract  void TermsIndexWriterBase.FieldWriter.add(BytesRef text, TermStats stats, long termsFilePointer)
           
abstract  boolean TermsIndexWriterBase.FieldWriter.checkIndexTerm(BytesRef text, TermStats stats)
           
abstract  void TermsConsumer.finishTerm(BytesRef text, TermStats stats)
          Finishes the current term; numDocs must be > 0.
abstract  void PostingsWriterBase.finishTerm(TermStats stats)
          Finishes the current term
abstract  boolean VariableGapTermsIndexWriter.IndexTermSelector.isIndexTerm(BytesRef term, TermStats stats)
          Called sequentially on every term being written, returning true if this term should be indexed
 boolean VariableGapTermsIndexWriter.EveryNTermSelector.isIndexTerm(BytesRef term, TermStats stats)
           
 boolean VariableGapTermsIndexWriter.EveryNOrDocFreqTermSelector.isIndexTerm(BytesRef term, TermStats stats)
           
 

Uses of TermStats in org.apache.lucene.codecs.lucene40
 

Methods in org.apache.lucene.codecs.lucene40 with parameters of type TermStats
 void Lucene40PostingsWriter.finishTerm(TermStats stats)
          Called when we are done adding docs to this term
 

Uses of TermStats in org.apache.lucene.codecs.pulsing
 

Methods in org.apache.lucene.codecs.pulsing with parameters of type TermStats
 void PulsingPostingsWriter.finishTerm(TermStats stats)
          Called when we are done adding docs to this term
 

Uses of TermStats in org.apache.lucene.codecs.sep
 

Methods in org.apache.lucene.codecs.sep with parameters of type TermStats
 void SepPostingsWriter.finishTerm(TermStats stats)
          Called when we are done adding docs to this term
 



Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.