MultiSortedDocValues
Implements SortedDocValues over n subs, using an OrdinalMap
Constructors
Properties
Functions
Advances to the first beyond the current whose document number is greater than or equal to target, and returns the document number itself. Exhausts the iterator and returns .NO_MORE_DOCS if target is greater than the highest document number in the set.
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.
Returns the estimated cost of this DocIdSetIterator.
Returns a TermsEnum over the values, filtered by a CompiledAutomaton The enum supports TermsEnum.ord.
Load doc IDs into a FixedBitSet. This should behave exactly as if implemented as below, which is the default implementation:
If key exists, returns its ordinal, else returns -insertionPoint-1, like Arrays.binarySearch.
Returns a TermsEnum over the values. The enum supports TermsEnum.ord and TermsEnum.seekExact.