Uses of Class
org.apache.lucene.index.DocValuesIterator
-
Packages that use DocValuesIterator Package Description 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.document The logical representation of aDocument
for indexing and searching.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices.org.apache.lucene.search.join Support for index-time and query-time joins. -
-
Uses of DocValuesIterator in org.apache.lucene.codecs.lucene70
Subclasses of DocValuesIterator in org.apache.lucene.codecs.lucene70 Modifier and Type Class Description private static class
Lucene70DocValuesProducer.BaseSortedDocValues
private static class
Lucene70DocValuesProducer.BaseSortedSetDocValues
private static class
Lucene70DocValuesProducer.DenseBinaryDocValues
private static class
Lucene70DocValuesProducer.DenseNumericDocValues
private static class
Lucene70DocValuesProducer.SparseBinaryDocValues
private static class
Lucene70DocValuesProducer.SparseNumericDocValues
(package private) static class
Lucene70NormsProducer.DenseNormsIterator
(package private) static class
Lucene70NormsProducer.SparseNormsIterator
-
Uses of DocValuesIterator in org.apache.lucene.codecs.lucene80
Subclasses of DocValuesIterator in org.apache.lucene.codecs.lucene80 Modifier and Type Class Description private static class
Lucene80DocValuesProducer.BaseSortedDocValues
private static class
Lucene80DocValuesProducer.BaseSortedSetDocValues
private static class
Lucene80DocValuesProducer.DenseBinaryDocValues
private static class
Lucene80DocValuesProducer.DenseNumericDocValues
private static class
Lucene80DocValuesProducer.SparseBinaryDocValues
private static class
Lucene80DocValuesProducer.SparseNumericDocValues
(package private) static class
Lucene80NormsProducer.DenseNormsIterator
(package private) static class
Lucene80NormsProducer.SparseNormsIterator
-
Uses of DocValuesIterator in org.apache.lucene.codecs.memory
Subclasses of DocValuesIterator in org.apache.lucene.codecs.memory Modifier and Type Class Description (package private) class
LegacyBinaryDocValuesWrapper
Deprecated.ImplementBinaryDocValues
directly.(package private) class
LegacyNumericDocValuesWrapper
Deprecated.ImplementNumericDocValues
directly.(package private) class
LegacySortedDocValuesWrapper
Deprecated.ImplementSortedDocValues
directly.(package private) class
LegacySortedNumericDocValuesWrapper
Deprecated.ImplementSortedNumericDocValues
directly.(package private) class
LegacySortedSetDocValuesWrapper
Deprecated.ImplementSortedSetDocValues
directly. -
Uses of DocValuesIterator in org.apache.lucene.document
Subclasses of DocValuesIterator in org.apache.lucene.document Modifier and Type Class Description (package private) class
BinaryRangeDocValues
-
Uses of DocValuesIterator in org.apache.lucene.index
Classes in org.apache.lucene.index with type parameters of type DocValuesIterator Modifier and Type Class Description (package private) static class
ReadersAndUpdates.MergedDocValues<DocValuesInstance extends DocValuesIterator>
This class merges the current on-disk DV with an incoming update DV instance and merges the two instances giving the incoming update precedence in terms of values, in other words the values of the update always wins over the on-disk version.Subclasses of DocValuesIterator in org.apache.lucene.index Modifier and Type Class Description class
BinaryDocValues
A per-document numeric value.(package private) static class
BinaryDocValuesFieldUpdates.Iterator
private static class
BinaryDocValuesWriter.BufferedBinaryDocValues
(package private) static class
BinaryDocValuesWriter.SortingBinaryDocValues
protected static class
DocValuesFieldUpdates.AbstractIterator
(package private) static class
DocValuesFieldUpdates.Iterator
An iterator over documents and their updated values.class
FilterBinaryDocValues
Delegates all methods to a wrappedBinaryDocValues
.class
FilterNumericDocValues
Delegates all methods to a wrappedNumericDocValues
.class
FilterSortedDocValues
Delegates all methods to a wrappedSortedDocValues
.class
FilterSortedNumericDocValues
Delegates all methods to a wrappedSortedNumericDocValues
.class
FilterSortedSetDocValues
Delegates all methods to a wrappedSortedSetDocValues
.static class
MultiDocValues.MultiSortedDocValues
Implements SortedDocValues over n subs, using an OrdinalMapstatic class
MultiDocValues.MultiSortedSetDocValues
Implements MultiSortedSetDocValues over n subs, using an OrdinalMapprivate static class
NormValuesWriter.BufferedNorms
class
NumericDocValues
A per-document numeric value.(package private) static class
NumericDocValuesFieldUpdates.Iterator
private static class
NumericDocValuesWriter.BufferedNumericDocValues
(package private) static class
NumericDocValuesWriter.SortingNumericDocValues
(package private) static class
ReadersAndUpdates.MergedDocValues<DocValuesInstance extends DocValuesIterator>
This class merges the current on-disk DV with an incoming update DV instance and merges the two instances giving the incoming update precedence in terms of values, in other words the values of the update always wins over the on-disk version.(package private) class
SingletonSortedNumericDocValues
Exposes multi-valued view over a single-valued instance.(package private) class
SingletonSortedSetDocValues
Exposes multi-valued iterator view over a single-valued iterator.class
SortedDocValues
A per-document byte[] with presorted values.private static class
SortedDocValuesWriter.BufferedSortedDocValues
(package private) static class
SortedDocValuesWriter.SortingSortedDocValues
class
SortedNumericDocValues
A list of per-document numeric values, sorted according toLong.compare(long, long)
.private static class
SortedNumericDocValuesWriter.BufferedSortedNumericDocValues
(package private) static class
SortedNumericDocValuesWriter.SortingSortedNumericDocValues
class
SortedSetDocValues
A multi-valued version ofSortedDocValues
.private static class
SortedSetDocValuesWriter.BufferedSortedSetDocValues
(package private) static class
SortedSetDocValuesWriter.SortingSortedSetDocValues
Fields in org.apache.lucene.index declared as DocValuesIterator Modifier and Type Field Description (package private) DocValuesInstance
ReadersAndUpdates.MergedDocValues. currentValuesSupplier
private DocValuesInstance
ReadersAndUpdates.MergedDocValues. onDiskDocValues
private DocValuesInstance
ReadersAndUpdates.MergedDocValues. updateDocValues
Methods in org.apache.lucene.index that return DocValuesIterator Modifier and Type Method Description DocValuesIterator
CheckIndex.DocValuesIteratorSupplier. get(FieldInfo fi)
-
Uses of DocValuesIterator in org.apache.lucene.search
Subclasses of DocValuesIterator in org.apache.lucene.search Modifier and Type Class Description private static class
MultiNormsLeafSimScorer.MultiFieldNormValues
(package private) static class
SortedNumericSelector.MaxValue
Wraps a SortedNumericDocValues and returns the last value (max)(package private) static class
SortedNumericSelector.MinValue
Wraps a SortedNumericDocValues and returns the first value (min)(package private) static class
SortedSetSelector.MaxValue
Wraps a SortedSetDocValues and returns the last ordinal (max)(package private) static class
SortedSetSelector.MiddleMaxValue
Wraps a SortedSetDocValues and returns the middle ordinal (or max of the two)(package private) static class
SortedSetSelector.MiddleMinValue
Wraps a SortedSetDocValues and returns the middle ordinal (or min of the two)(package private) static class
SortedSetSelector.MinValue
Wraps a SortedSetDocValues and returns the first ordinal (min) -
Uses of DocValuesIterator in org.apache.lucene.search.join
Subclasses of DocValuesIterator in org.apache.lucene.search.join Modifier and Type Class Description private static class
ToParentDocValues.NumDV
private static class
ToParentDocValues.SortedDVs
-