Uses of Class
org.apache.lucene.codecs.DocValuesConsumer
-
Packages that use DocValuesConsumer 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.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 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.lucene70
Subclasses of DocValuesConsumer in org.apache.lucene.codecs.lucene70 Modifier and Type Class Description (package private) class
Lucene70DocValuesConsumer
writer forLucene70DocValuesFormat
Methods in org.apache.lucene.codecs.lucene70 that return DocValuesConsumer Modifier and Type Method Description DocValuesConsumer
Lucene70DocValuesFormat. fieldsConsumer(SegmentWriteState state)
-
Uses of DocValuesConsumer in org.apache.lucene.codecs.lucene80
Subclasses of DocValuesConsumer in org.apache.lucene.codecs.lucene80 Modifier and Type Class Description (package private) class
Lucene80DocValuesConsumer
writer forLucene80DocValuesFormat
Methods in org.apache.lucene.codecs.lucene80 that return DocValuesConsumer Modifier and Type Method Description DocValuesConsumer
Lucene80DocValuesFormat. fieldsConsumer(SegmentWriteState state)
-
Uses of DocValuesConsumer in org.apache.lucene.codecs.memory
Subclasses of DocValuesConsumer in org.apache.lucene.codecs.memory Modifier and Type Class Description (package private) class
DirectDocValuesConsumer
Writer forDirectDocValuesFormat
Methods in org.apache.lucene.codecs.memory that return DocValuesConsumer Modifier and Type Method Description DocValuesConsumer
DirectDocValuesFormat. 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)
-