Uses of Class
org.apache.lucene.index.DocValuesIterator
-
Packages that use DocValuesIterator 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.lucene90 Lucene 9.0 file format.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.sandbox.search This package contains a flexible graph-based proximity query, TermAutomatonQuery, and geospatial queries.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.backward_codecs.lucene70
Subclasses of DocValuesIterator in org.apache.lucene.backward_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.backward_codecs.lucene80
Subclasses of DocValuesIterator in org.apache.lucene.backward_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.lucene90
Subclasses of DocValuesIterator in org.apache.lucene.codecs.lucene90 Modifier and Type Class Description private class
Lucene90DocValuesProducer.BaseSortedDocValues
private class
Lucene90DocValuesProducer.BaseSortedSetDocValues
private static class
Lucene90DocValuesProducer.DenseBinaryDocValues
private static class
Lucene90DocValuesProducer.DenseNumericDocValues
private static class
Lucene90DocValuesProducer.SparseBinaryDocValues
private static class
Lucene90DocValuesProducer.SparseNumericDocValues
(package private) static class
Lucene90NormsProducer.DenseNormsIterator
(package private) static class
Lucene90NormsProducer.SparseNormsIterator
-
Uses of DocValuesIterator in org.apache.lucene.document
Subclasses of DocValuesIterator in org.apache.lucene.document Modifier and Type Class Description class
BinaryRangeDocValues
A binary representation of a range that wraps a BinaryDocValues field -
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
(package 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.(package 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.sandbox.search
Subclasses of DocValuesIterator in org.apache.lucene.sandbox.search Modifier and Type Class Description private static class
MultiNormsLeafSimScorer.MultiFieldNormValues
-
Uses of DocValuesIterator in org.apache.lucene.search
Subclasses of DocValuesIterator in org.apache.lucene.search Modifier and Type Class Description (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
-