Iterator
An iterator over documents and their updated values. Only documents with updates are returned by this iterator, and the documents are returned in increasing order.
Inheritors
Functions
Link copied to clipboard
Link copied to clipboard
Advance the iterator to exactly target and return whether target has a value. target must be greater than or equal to the current .docID and must be a valid doc ID, ie. 0 and <maxDoc. After this method returns, .docID returns target.
Link copied to clipboard
Returns a binary value for the current document if this iterator is a binary value iterator.
Link copied to clipboard
Returns the estimated cost of this DocIdSetIterator.
Link copied to clipboard
Load doc IDs into a FixedBitSet. This should behave exactly as if implemented as below, which is the default implementation:
Link copied to clipboard