Uses of Class
org.apache.lucene.codecs.DocValuesFormat
-
Packages that use DocValuesFormat Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene70 Components from the Lucene 7.0 index format.org.apache.lucene.codecs.lucene80 Components from the Lucene 8.0 index format Seeorg.apache.lucene.codecs.lucene84
for an overview of the index format.org.apache.lucene.codecs.lucene84 Lucene 8.4 file format.org.apache.lucene.codecs.memory Term dictionary, DocValues or Postings formats that are read entirely into memory.org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.index Code to maintain and access indices. -
-
Uses of DocValuesFormat in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs with type parameters of type DocValuesFormat Modifier and Type Field Description private static NamedSPILoader<DocValuesFormat>
DocValuesFormat.Holder. LOADER
Methods in org.apache.lucene.codecs that return DocValuesFormat Modifier and Type Method Description abstract DocValuesFormat
Codec. docValuesFormat()
Encodes/decodes docvaluesDocValuesFormat
FilterCodec. docValuesFormat()
static DocValuesFormat
DocValuesFormat. forName(java.lang.String name)
looks up a format by nameMethods in org.apache.lucene.codecs that return types with arguments of type DocValuesFormat Modifier and Type Method Description (package private) static NamedSPILoader<DocValuesFormat>
DocValuesFormat.Holder. getLoader()
-
Uses of DocValuesFormat in org.apache.lucene.codecs.lucene70
Subclasses of DocValuesFormat in org.apache.lucene.codecs.lucene70 Modifier and Type Class Description class
Lucene70DocValuesFormat
Lucene 7.0 DocValues format.Fields in org.apache.lucene.codecs.lucene70 declared as DocValuesFormat Modifier and Type Field Description private DocValuesFormat
Lucene70Codec. defaultDVFormat
private DocValuesFormat
Lucene70Codec. docValuesFormat
Methods in org.apache.lucene.codecs.lucene70 that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
Lucene70Codec. docValuesFormat()
-
Uses of DocValuesFormat in org.apache.lucene.codecs.lucene80
Subclasses of DocValuesFormat in org.apache.lucene.codecs.lucene80 Modifier and Type Class Description class
Lucene80DocValuesFormat
Lucene 8.0 DocValues format.Fields in org.apache.lucene.codecs.lucene80 declared as DocValuesFormat Modifier and Type Field Description private DocValuesFormat
Lucene80Codec. defaultDVFormat
private DocValuesFormat
Lucene80Codec. docValuesFormat
Methods in org.apache.lucene.codecs.lucene80 that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
Lucene80Codec. docValuesFormat()
-
Uses of DocValuesFormat in org.apache.lucene.codecs.lucene84
Fields in org.apache.lucene.codecs.lucene84 declared as DocValuesFormat Modifier and Type Field Description private DocValuesFormat
Lucene84Codec. defaultDVFormat
private DocValuesFormat
Lucene84Codec. docValuesFormat
Methods in org.apache.lucene.codecs.lucene84 that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
Lucene84Codec. docValuesFormat()
DocValuesFormat
Lucene84Codec. getDocValuesFormatForField(java.lang.String field)
Returns the docvalues format that should be used for writing new segments offield
. -
Uses of DocValuesFormat in org.apache.lucene.codecs.memory
Subclasses of DocValuesFormat in org.apache.lucene.codecs.memory Modifier and Type Class Description class
DirectDocValuesFormat
In-memory docvalues format that does no (or very little) compression. -
Uses of DocValuesFormat in org.apache.lucene.codecs.perfield
Subclasses of DocValuesFormat in org.apache.lucene.codecs.perfield Modifier and Type Class Description class
PerFieldDocValuesFormat
Enables per field docvalues support.Fields in org.apache.lucene.codecs.perfield with type parameters of type DocValuesFormat Modifier and Type Field Description private java.util.Map<DocValuesFormat,PerFieldDocValuesFormat.ConsumerAndSuffix>
PerFieldDocValuesFormat.FieldsWriter. formats
Methods in org.apache.lucene.codecs.perfield that return DocValuesFormat Modifier and Type Method Description abstract DocValuesFormat
PerFieldDocValuesFormat. getDocValuesFormatForField(java.lang.String field)
Returns the doc values format that should be used for writing new segments offield
. -
Uses of DocValuesFormat in org.apache.lucene.codecs.simpletext
Subclasses of DocValuesFormat in org.apache.lucene.codecs.simpletext Modifier and Type Class Description (package private) class
SimpleTextDocValuesFormat
plain text doc values format.Fields in org.apache.lucene.codecs.simpletext declared as DocValuesFormat Modifier and Type Field Description private DocValuesFormat
SimpleTextCodec. dvFormat
Methods in org.apache.lucene.codecs.simpletext that return DocValuesFormat Modifier and Type Method Description DocValuesFormat
SimpleTextCodec. docValuesFormat()
-
Uses of DocValuesFormat in org.apache.lucene.index
Methods in org.apache.lucene.index with parameters of type DocValuesFormat Modifier and Type Method Description private void
ReadersAndUpdates. handleDVUpdates(FieldInfos infos, Directory dir, DocValuesFormat dvFormat, SegmentReader reader, java.util.Map<java.lang.Integer,java.util.Set<java.lang.String>> fieldFiles, long maxDelGen, InfoStream infoStream)
-