Uses of Class
org.apache.lucene.codecs.DocValuesConsumer
-
Packages that use DocValuesConsumer Package Description org.apache.lucene.backward_codecs.lucene70 Components from the Lucene 7.0 index format.org.apache.lucene.backward_codecs.lucene80 Components from the Lucene 8.0 index format.org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene90 Lucene 9.0 file format.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 DocValuesConsumer in org.apache.lucene.backward_codecs.lucene70
Subclasses of DocValuesConsumer in org.apache.lucene.backward_codecs.lucene70 Modifier and Type Class Description (package private) class
Lucene70DocValuesConsumer
writer forLucene70DocValuesFormat
Methods in org.apache.lucene.backward_codecs.lucene70 that return DocValuesConsumer Modifier and Type Method Description DocValuesConsumer
Lucene70DocValuesFormat. fieldsConsumer(SegmentWriteState state)
-
Uses of DocValuesConsumer in org.apache.lucene.backward_codecs.lucene80
Subclasses of DocValuesConsumer in org.apache.lucene.backward_codecs.lucene80 Modifier and Type Class Description (package private) class
Lucene80DocValuesConsumer
writer forLucene80DocValuesFormat
Methods in org.apache.lucene.backward_codecs.lucene80 that return DocValuesConsumer Modifier and Type Method Description DocValuesConsumer
Lucene80DocValuesFormat. fieldsConsumer(SegmentWriteState state)
Note: although this format is only used on older versions, we need to keep the write logic in addition to the read logic. -
Uses of DocValuesConsumer in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return DocValuesConsumer Modifier and Type Method Description abstract DocValuesConsumer
DocValuesFormat. fieldsConsumer(SegmentWriteState state)
Returns aDocValuesConsumer
to write docvalues to the index. -
Uses of DocValuesConsumer in org.apache.lucene.codecs.lucene90
Subclasses of DocValuesConsumer in org.apache.lucene.codecs.lucene90 Modifier and Type Class Description (package private) class
Lucene90DocValuesConsumer
writer forLucene90DocValuesFormat
Methods in org.apache.lucene.codecs.lucene90 that return DocValuesConsumer Modifier and Type Method Description DocValuesConsumer
Lucene90DocValuesFormat. fieldsConsumer(SegmentWriteState state)
-
Uses of DocValuesConsumer in org.apache.lucene.codecs.perfield
Subclasses of DocValuesConsumer in org.apache.lucene.codecs.perfield Modifier and Type Class Description private class
PerFieldDocValuesFormat.FieldsWriter
Fields in org.apache.lucene.codecs.perfield declared as DocValuesConsumer Modifier and Type Field Description (package private) DocValuesConsumer
PerFieldDocValuesFormat.ConsumerAndSuffix. consumer
Methods in org.apache.lucene.codecs.perfield that return DocValuesConsumer Modifier and Type Method Description DocValuesConsumer
PerFieldDocValuesFormat. fieldsConsumer(SegmentWriteState state)
private DocValuesConsumer
PerFieldDocValuesFormat.FieldsWriter. getInstance(FieldInfo field)
private DocValuesConsumer
PerFieldDocValuesFormat.FieldsWriter. getInstance(FieldInfo field, boolean ignoreCurrentFormat)
DocValuesConsumer for the given field. -
Uses of DocValuesConsumer in org.apache.lucene.codecs.simpletext
Subclasses of DocValuesConsumer in org.apache.lucene.codecs.simpletext Modifier and Type Class Description (package private) class
SimpleTextDocValuesWriter
Methods in org.apache.lucene.codecs.simpletext that return DocValuesConsumer Modifier and Type Method Description DocValuesConsumer
SimpleTextDocValuesFormat. fieldsConsumer(SegmentWriteState state)
-
Uses of DocValuesConsumer in org.apache.lucene.index
Methods in org.apache.lucene.index with parameters of type DocValuesConsumer Modifier and Type Method Description void
BinaryDocValuesWriter. flush(SegmentWriteState state, Sorter.DocMap sortMap, DocValuesConsumer dvConsumer)
(package private) abstract void
DocValuesWriter. flush(SegmentWriteState state, Sorter.DocMap sortMap, DocValuesConsumer consumer)
void
NumericDocValuesWriter. flush(SegmentWriteState state, Sorter.DocMap sortMap, DocValuesConsumer dvConsumer)
void
SortedDocValuesWriter. flush(SegmentWriteState state, Sorter.DocMap sortMap, DocValuesConsumer dvConsumer)
void
SortedNumericDocValuesWriter. flush(SegmentWriteState state, Sorter.DocMap sortMap, DocValuesConsumer dvConsumer)
void
SortedSetDocValuesWriter. flush(SegmentWriteState state, Sorter.DocMap sortMap, DocValuesConsumer dvConsumer)
-