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

Packages that use FieldsConsumer
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.bloom Codec PostingsFormat for fast access to low-frequency terms such as primary key fields. 
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 FieldsConsumer in org.apache.lucene.codecs
 

Subclasses of FieldsConsumer in org.apache.lucene.codecs
 class BlockTermsWriter
          Writes terms dict, block-encoding (column stride) each term's metadata for each set of terms between two index terms.
 class BlockTreeTermsWriter
          block-based terms index and dictionary writer.
 

Methods in org.apache.lucene.codecs that return FieldsConsumer
abstract  FieldsConsumer PostingsFormat.fieldsConsumer(SegmentWriteState state)
          Writes a new segment
 

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

Subclasses of FieldsConsumer in org.apache.lucene.codecs.appending
 class AppendingTermsWriter
          Append-only version of BlockTreeTermsWriter
 

Uses of FieldsConsumer in org.apache.lucene.codecs.bloom
 

Methods in org.apache.lucene.codecs.bloom that return FieldsConsumer
 FieldsConsumer BloomFilteringPostingsFormat.fieldsConsumer(SegmentWriteState state)
           
 

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

Methods in org.apache.lucene.codecs.lucene40 that return FieldsConsumer
 FieldsConsumer Lucene40PostingsFormat.fieldsConsumer(SegmentWriteState state)
           
 

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

Methods in org.apache.lucene.codecs.memory that return FieldsConsumer
 FieldsConsumer MemoryPostingsFormat.fieldsConsumer(SegmentWriteState state)
           
 FieldsConsumer DirectPostingsFormat.fieldsConsumer(SegmentWriteState state)
           
 

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

Methods in org.apache.lucene.codecs.perfield that return FieldsConsumer
 FieldsConsumer PerFieldPostingsFormat.fieldsConsumer(SegmentWriteState state)
           
 

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

Methods in org.apache.lucene.codecs.pulsing that return FieldsConsumer
 FieldsConsumer PulsingPostingsFormat.fieldsConsumer(SegmentWriteState state)
           
 

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

Methods in org.apache.lucene.codecs.simpletext that return FieldsConsumer
 FieldsConsumer SimpleTextPostingsFormat.fieldsConsumer(SegmentWriteState state)
           
 



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