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

Packages that use FieldsProducer
org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index. 
org.apache.lucene.codecs.appending Codec for on append-only outputs, such as plain output streams and append-only filesystems. 
org.apache.lucene.codecs.lucene40 Lucene 4.0 file format. 
org.apache.lucene.codecs.memory Postings format that is read entirely into memory. 
org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field. 
org.apache.lucene.codecs.pulsing Pulsing Codec: inlines low frequency terms' postings into terms dictionary. 
org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings. 
 

Uses of FieldsProducer in org.apache.lucene.codecs
 

Subclasses of FieldsProducer in org.apache.lucene.codecs
 class BlockTermsReader
          Handles a terms dict, but decouples all details of doc/freqs/positions reading to an instance of PostingsReaderBase.
 class BlockTreeTermsReader
          A block-based terms index and dictionary that assigns terms to variable length blocks according to how they share prefixes.
 

Methods in org.apache.lucene.codecs that return FieldsProducer
abstract  FieldsProducer PostingsFormat.fieldsProducer(SegmentReadState state)
          Reads a segment.
 

Uses of FieldsProducer in org.apache.lucene.codecs.appending
 

Subclasses of FieldsProducer in org.apache.lucene.codecs.appending
 class AppendingTermsReader
          Reads append-only terms from AppendingTermsWriter
 

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

Methods in org.apache.lucene.codecs.lucene40 that return FieldsProducer
 FieldsProducer Lucene40PostingsFormat.fieldsProducer(SegmentReadState state)
           
 

Uses of FieldsProducer in org.apache.lucene.codecs.memory
 

Methods in org.apache.lucene.codecs.memory that return FieldsProducer
 FieldsProducer MemoryPostingsFormat.fieldsProducer(SegmentReadState state)
           
 

Uses of FieldsProducer in org.apache.lucene.codecs.perfield
 

Methods in org.apache.lucene.codecs.perfield that return FieldsProducer
 FieldsProducer PerFieldPostingsFormat.fieldsProducer(SegmentReadState state)
           
 

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

Methods in org.apache.lucene.codecs.pulsing that return FieldsProducer
 FieldsProducer PulsingPostingsFormat.fieldsProducer(SegmentReadState state)
           
 

Uses of FieldsProducer in org.apache.lucene.codecs.simpletext
 

Methods in org.apache.lucene.codecs.simpletext that return FieldsProducer
 FieldsProducer SimpleTextPostingsFormat.fieldsProducer(SegmentReadState state)
           
 



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