java.lang.Object
org.apache.lucene.search.DocIdSetIterator
org.apache.lucene.index.DocValuesIterator
- Direct Known Subclasses:
BinaryDocValues
,DocValuesFieldUpdates.Iterator
,NumericDocValues
,ReadersAndUpdates.MergedDocValues
,SortedDocValues
,SortedNumericDocValues
,SortedSetDocValues
-
Field Summary
Fields inherited from class org.apache.lucene.search.DocIdSetIterator
NO_MORE_DOCS
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract boolean
advanceExact
(int target) Advance the iterator to exactlytarget
and return whethertarget
has a value.Methods inherited from class org.apache.lucene.search.DocIdSetIterator
advance, all, cost, docID, empty, nextDoc, range, slowAdvance
-
Constructor Details
-
DocValuesIterator
DocValuesIterator()
-
-
Method Details
-
advanceExact
Advance the iterator to exactlytarget
and return whethertarget
has a value.target
must be greater than or equal to the currentdoc ID
and must be a valid doc ID, ie. ≥ 0 and <maxDoc
. After this method returns,DocIdSetIterator.docID()
returnstarget
.- Throws:
IOException
-