Uses of Class
org.apache.lucene.codecs.PostingsFormat
-
Packages that use PostingsFormat Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene50 Components from the Lucene 5.0 index format Seeorg.apache.lucene.codecs.lucene50for an overview of the index format.org.apache.lucene.codecs.lucene70 Lucene 7.0 file format.org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field. -
-
Uses of PostingsFormat in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as PostingsFormat Modifier and Type Field Description static PostingsFormat[]PostingsFormat. EMPTYZero-lengthPostingsFormatarray.Methods in org.apache.lucene.codecs that return PostingsFormat Modifier and Type Method Description static PostingsFormatPostingsFormat. forName(String name)looks up a format by nameabstract PostingsFormatCodec. postingsFormat()Encodes/decodes postingsPostingsFormatFilterCodec. postingsFormat() -
Uses of PostingsFormat in org.apache.lucene.codecs.lucene50
Subclasses of PostingsFormat in org.apache.lucene.codecs.lucene50 Modifier and Type Class Description classLucene50PostingsFormatLucene 5.0 postings format, which encodes postings in packed integer blocks for fast decode. -
Uses of PostingsFormat in org.apache.lucene.codecs.lucene70
Methods in org.apache.lucene.codecs.lucene70 that return PostingsFormat Modifier and Type Method Description PostingsFormatLucene70Codec. getPostingsFormatForField(String field)Returns the postings format that should be used for writing new segments offield.PostingsFormatLucene70Codec. postingsFormat() -
Uses of PostingsFormat in org.apache.lucene.codecs.perfield
Subclasses of PostingsFormat in org.apache.lucene.codecs.perfield Modifier and Type Class Description classPerFieldPostingsFormatEnables per field postings support.Methods in org.apache.lucene.codecs.perfield that return PostingsFormat Modifier and Type Method Description abstract PostingsFormatPerFieldPostingsFormat. getPostingsFormatForField(String field)Returns the postings format that should be used for writing new segments offield.
-